[issue20420] BufferedIncrementalEncoder violates IncrementalEncoder interface

2021-12-09 Thread Irit Katriel
Change by Irit Katriel : -- components: +Library (Lib) versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/issue20

[issue26159] Unsafe to BaseEventLoop.set_debug(False) when PYTHONASYNCIODEBUG=1

2021-12-09 Thread Irit Katriel
Irit Katriel added the comment: asyncio.coroutine was removed in 3.10, so this is no longer relevant. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bug

[issue7262] [doc] codecs.open() + eol (windows)

2021-12-09 Thread Irit Katriel
Irit Katriel added the comment: That paragraph was edited here: https://github.com/python/cpython/commit/b9fdb7a452c2b6f7a628118b5f695bd061b62cc8 but this point was not added. -- nosy: +iritkatriel title: codecs.open() + eol (windows) -> [doc] codecs.open() + eol (windows) versi

[issue17108] [doc] import silently prefers package over module when both available

2021-12-09 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy title: import silently prefers package over module when both available -> [doc] import silently prefers package over module when both available versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.3, Python

[issue20823] [doc] Clarify copyreg.pickle() documentation

2021-12-09 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy -patch title: Clarify copyreg.pickle() documentation -> [doc] Clarify copyreg.pickle() documentation versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.5, Python 3.6, Python 3.7 ___ Python trac

[issue27583] [doc ] configparser: modifying default_section at runtime

2021-12-09 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy title: configparser: modifying default_section at runtime -> [doc ] configparser: modifying default_section at runtime versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.5, Python 3.6, Python

[issue45773] Compiler hangs during jump elimination

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- status: pending -> closed ___ Python tracker <https://bugs.python.org/issue45773> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue45779] multiprocessing initializer error with CPython 3.9.6 on Apple Silicon

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- status: pending -> closed ___ Python tracker <https://bugs.python.org/issue45779> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue15757] ./configure --with-pydebug on FreeBSD results in -O2 -pipe eventually ending up in CFLAGS.

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue15757> ___ ___ Python-bugs-list

[issue13473] Add tests for files byte-compiled by distutils

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue13473> ___ ___ Python-bugs-list

[issue14336] Difference between pickle implementations for function objects

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.or

[issue28559] Unclear error message when raising wrong type of exceptions

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> rejected stage: patch review -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.or

[issue41702] Inconsistent behaviour in strftime

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue41702> ___ ___ Python-bugs-list

[issue22293] unittest.mock: use slots in MagicMock to reduce memory footprint

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: needs patch -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue22293> ___ ___ Pyth

[issue40821] os.getlogin() not working

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue40821> ___ ___ Python-bugs-list

[issue30718] [doc] open builtin function: specifying the size of buffer has no effect for text files

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- assignee: -> docs@python components: +Documentation -Interpreter Core keywords: +easy nosy: +docs@python title: open builtin function: specifying the size of buffer has no effect for text files -> [doc] open builtin function: specifying the size of

[issue16977] argparse: mismatch between choices parsing and usage/error message

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: We could make the error message less wrong: >>> p.parse_args(['d']) usage: [-h] {a,b,c} : error: argument a: invalid choice: 'd' (choose a value in 'abc') % git diff diff --git a/Lib/argparse.py b/Lib/argparse.py index

[issue18349] argparse usage should preserve () in metavars such as range(20)

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11: >>> import argparse >>> parser = argparse.ArgumentParser() >>> parser.add_argument('foo', type=int, choices=range(20), >>> metavar='range(0,20)') _StoreAction(option_strings=[],

[issue11708] argparse: suggestion for formatting optional positional args

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- type: -> enhancement versions: +Python 3.11 -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker <https://bugs.python.org/issu

[issue23994] argparse fails to detect program name when there is a slash at the end of the program's path

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: I am unable to reproduce this problem on 3.11 on a Mac. -- nosy: +iritkatriel status: open -> pending ___ Python tracker <https://bugs.python.org/issu

[issue17890] argparse: mutually exclusive groups full of help-suppressed args can cause AssertionErrors

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: I'm unable to reproduce this problem on 3.11: >>> import argparse >>> parser = argparse.ArgumentParser() >>> group = parser.add_mutually_exclusive_group() >>> group.add_argument('--spam', help=argparse.SUP

[issue28841] urlparse.urlparse() parses invalid URI without generating an error (examples provided)

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11: >>> urllib.parse.urlparse('http://www.google.com:/abc') ParseResult(scheme='http', netloc='www.google.com:', path='/abc', params='', query='', fragment='

[issue22047] argparse improperly prints mutually exclusive options when they are in a group

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: I am unable to reproduce this on 3.11: % ./python.exe tt.py -h usage: tt.py [-h] [[-hello]] options: -h, --help show this help message and exit -hello A flag -- nosy: +iritkatriel status: open -> pend

[issue31768] argparse drops '|'s when the arguments are too long

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: In 3.11 the problem is still there, but the cutoff to make Eric's script show it is now 26 rather than 8: % ./python.exe tt.py 25 usage: tt.py [-h] [-v | -q | -x [X] | -y [Y] | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z | Z |

[issue34628] urllib.request.urlopen fails when userinfo is present in URL

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.4, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue34

[issue16807] argparse group nesting lost on inheritance

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11: >>> argparse.ArgumentParser(add_help=False, parents=[parent]).print_help() usage: [--foo FOO] [-a | -b] options: -a -b the group: --foo FOO -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -P

[issue17113] argparse.RawDescriptionHelpFormatter should not delete blank lines

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: Adding a space as Paul suggests works. I'll close this soon if nobody objects. -- nosy: +iritkatriel resolution: -> wont fix status: open -> pending ___ Python tracker <https://bugs.python.

[issue28609] argparse claims '*' positional argument is required in error output

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11. >>> parser.parse_args([]) usage: [-h] [-V] COMMAND [ARGUMENT ...] : error: the following arguments are required: COMMAND, ARGUMENT -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -P

[issue15125] argparse: positional arguments containing - in name not handled well

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/issue15

[issue24338] In argparse adding wrong arguments makes malformed namespace

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: >From the discussion and "rejected" resolution it looks like the intention was >to close this issue. I will do that soon if nobody objects. -- nosy: +iritkatriel status: open -> pending ___ Pyt

[issue17113] argparse.RawDescriptionHelpFormatter should not delete blank lines

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue17113> ___ ___ Python-bugs-list

[issue17024] cElementTree calls end() on parser taget even if start() fails

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: This test passes on 3.11 (on a Mac). -- nosy: +iritkatriel status: open -> pending ___ Python tracker <https://bugs.python.org/issu

[issue21178] doctest cause warnings in tests using generators

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11. -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issue21

[issue22714] target of 'import statement' entry in general index for 'i' is wrong

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.or

[issue18636] mingw: setup _ssl module

2021-12-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue18636> ___ ___ Python-bugs-list

[issue21964] inconsistency in list-generator comprehension with yield(-from)

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: I think this issue was resolved by now. This is what happens on 3.11: >>> l = ["abc", range(3)] >>> g = [(yield from i) for i in l] File "", line 1 SyntaxError: 'yield' inside list comprehension >&g

[issue45635] Tidy up error handling in traceback.c / python run.c

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: New changeset 0fe104fce7da709edddb701baa2249e3275db1fd by Irit Katriel in branch 'main': bpo-45635: refactor print_exception_recursive into smaller functions to standardize error handling (GH-30015) https://github.com/python/cpyt

[issue9504] signal.signal/signal.alarm not working as expected

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: I'm unable to reproduce this on 3.11 on a Mac. Has it been fixed? -- nosy: +iritkatriel status: open -> pending ___ Python tracker <https://bugs.python.or

[issue25834] getpass falls back when sys.stdin is changed

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: Adam, do you have a suggestion what the check should be? -- nosy: +iritkatriel versions: +Python 3.11 -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue25

[issue20559] urllib/http fail to sanitize a non-ascii url

2021-12-10 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11. -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.3 ___ Python tracker <https://bugs.python.org/issue20

[issue25834] getpass falls back when sys.stdin is changed

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: Thanks, I'll close this and we can revisit if a new use case turns up. -- resolution: -> later stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.pyth

[issue18861] Problems with recursive automatic exception chaining

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: I think this problem is actually simpler than what we've been discussing. First, note that by-and-large our current system works: >>> try: ... raise VE(1) ... except VE as e1: ... try: ... raise VE(2) ... except VE as e2: ... raise

[issue23469] Delete Misc/*.wpr files

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy -patch ___ Python tracker <https://bugs.python.org/issue23469> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46040] asyncio.coroutine documented as removed in 3.10

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker <https://bugs.python.org/issue46040> ___ ___ Python-bugs-list m

[issue34798] pprint ignores the compact parameter for dicts

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: Don't discuss on a closed issue. Create a new one if there is still a problem. -- ___ Python tracker <https://bugs.python.org/is

[issue28816] [doc] Clarify that zipimport does not invoke import hooks to load custom files from zip.

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +28280 status: pending -> open pull_request: https://github.com/python/cpython/pull/30060 ___ Python tracker <https://bugs.python.org/issu

[issue12833] Document the need to pass the prompt to raw_input() with readline

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- stage: needs patch -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue12833> ___ ___ Pyth

[issue24012] Add error checks to PyInit_pyexpat()

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: This is all sorted now: iritkatriel@Irits-MBP cpython % grep "PyModule_AddObject(" Modules/pyexpat.c if (PyModule_AddObject(mod, name, submodule) < 0) { if (PyModule_AddObject(errors_module, "codes", codes_dict) < 0) {

[issue24010] Add error checks to PyInit__locale()

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: This function now looks like this: PyMODINIT_FUNC PyInit__locale(void) { return PyModuleDef_Init(&_localemodule); } -- nosy: +iritkatriel resolution: -> out of date stage: patch review -> resolved status: open

[issue35999] multpirocessing.Process alive after SIGTERM on parent

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: This example is not working for me on 3.11: >>> from multiprocessing import Process >>> from time import sleep >>> from os import getpid >>> >>> def log(daemon_mode): ... while True: ...

[issue14484] missing return in win32_kill?

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: That piece of code is still there, the function is now called os_kill_impl. -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <ht

[issue27227] argparse fails to parse [] when using choices and nargs='*'

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11. -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue27

[issue27718] help('signal') incomplete (e.g: signal.signal not visible)

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue27

[issue37700] shutil.copyfile does not raise SpecialFileError for socket files

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue37

[issue37701] shutil.copyfile raises SpecialFileError for symlink to fifo

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue37

[issue27257] get_addresses results in traceback with an addrspec with an empty local part.

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: I am unable to reproduce this on 3.11: >>> with open(b'lkml-exception.mail', mode = 'r') as f: ... msg = email.message_from_file(f, policy=email.policy.SMTP) ... Traceback (most recent call last): File "", line 2, in

[issue26571] turtle regression in 3.5

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue26571> ___ ___ Python-bug

[issue9338] argparse optionals with nargs='?', '*' or '+' can't be followed by positionals

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11: >>> import argparse >>> parser = argparse.ArgumentParser(prog='PROG') >>> >>> parser.add_argument('--badger', nargs='+') _StoreAction(option_strings=['--badger'],

[issue34557] When sending binary file to a Microsoft FTP server over FTP TLS, the SSL unwind method hangs

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue34

[issue9504] signal.signal/signal.alarm not working as expected

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <https://bugs.python.o

[issue29221] ABC Recursion Error on isinstance() with less than recursion limit class hierarchy depth

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue19459] Python does not support the GEORGIAN-PS charset

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/issue19

[issue35037] PYLONG_BITS_IN_DIGIT differs between MinGW and MSVC

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue9436] test_sysconfig failure: build a 32-bit Python a 64-bit OS

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue9436> ___ ___ Python-bugs-list

[issue41222] POpen bufsize=0 ignored with universal_newlines=True

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11 -Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue41

[issue36207] robotsparser deny all with some rules

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: I restored one non-spam message from the OP that was deleted. Changing to enhancement because this is not a bug (i.e., deviation from documentation). I don't know enough about this to have a view on whether this enhancement request should be acc

[issue26216] run runtktests.py error when test tkinter

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: runtktests.py was deleted here: https://github.com/python/cpython/pull/28929 -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bug

[issue21737] runpy.run_path() fails with frozen __main__ modules

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: The code looks very different from the patch now, is this issue still relevant? -- nosy: +iritkatriel status: open -> pending ___ Python tracker <https://bugs.python.org/issu

[issue22858] unittest.__init__:main shadows unittest.main

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue22858> ___ ___ Python-bugs-list mailing list Unsub

[issue20123] pydoc.synopsis fails to load binary modules

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: Re-enabling the test is tracked on 20128, so this issue is no longer needed. -- nosy: +iritkatriel resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracke

[issue20128] Re-enable test_modules_search_builtin() in test_pydoc

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.4 ___ Python tracker <https://bugs.python.org/issue20128> ___ ___ Python-bug

[issue17840] base64_codec uses assert for runtime validity checks

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue17840> ___ ___ Python-bugs-list mailing list Unsub

[issue26951] [doc] Unintuitive error when using generator expression in class property

2021-12-11 Thread Irit Katriel
Change by Irit Katriel : -- title: Unintuitive error when using generator expression in class property -> [doc] Unintuitive error when using generator expression in class property versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.5, Python

[issue10116] Sporadic failures in test_urllibnet

2021-12-11 Thread Irit Katriel
Irit Katriel added the comment: The www.example.com url was replaced by a local one in Issue36019, so this seems to complete what remained to do here. -- nosy: +iritkatriel resolution: -> fixed stage: -> resolved status: open -&g

[issue6634] [doc] sys.exit() called from threads other than the main one: undocumented behaviour

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: Since 3.8 we have threading.excepthook() so the situation is different now: https://github.com/python/cpython/pull/13515 I think it still makes sense to change the wording of the doc for sys.exit() a bit, and add a reference to the relevant section of the

[issue24224] test_msilib is inadequate

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: It seems that most of the tests in this script were written after this issue was created. If there is still need to extend them, it would help to elaborate here on what is still needed. Otherwise, we could close this. -- nosy: +iritkatriel

[issue22833] The decode_header() function decodes raw part to bytes or str, depending on encoded part

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11. -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issue22

[issue19838] test.test_pathlib.PosixPathTest.test_touch_common fails on FreeBSD with ZFS

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: issue15745 has been fixed in the meantime (about 6 years ago). If nobody objects I will close this as out of date. If there is still a problem with the test is will be reported for a current python version. -- nosy: +iritkatriel resolution: -> out

[issue18778] email docstrings and comments say about Unicode strings

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/issue18

[issue25668] Deadlock in logging caused by a possible race condition with "format"

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.or

[issue27920] Embedding python in a shared library fails to import the Python module

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: 3.4 is no longer maintained. Please create a new issue if you are still having this problem on a current python version (>= 3.9). -- resolution: -> out of date stage: -> resolved status: pending

[issue18778] email docstrings and comments use python 2 language (Unicode strings)

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- assignee: -> docs@python components: +Documentation nosy: +docs@python title: email docstrings and comments say about Unicode strings -> email docstrings and comments use python 2 language (Unicode strings) ___

[issue6942] email.generator.Generator memory consumption

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: Ross, the link to your code no longer works. Do you still have it, and if so could you paste/upload it here? -- nosy: +iritkatriel status: open -> pending ___ Python tracker <https://bugs.python.org/iss

[issue1525919] email package content-transfer-encoding behaviour changed

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: The encoding functions are now doing orig = msg.get_payload(decode=True) Does this fix the double-encoding issue? This change was made in https://github.com/python/cpython/commit/00ae435deef434f471e39bea3f3ab3a3e3cd90fe -- nosy: +iritkatriel status

[issue46057] argparse: embedded groups may prevent options from being in help output

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: Please complete the bug report: How did you run this function, what output did you get and what output did you expect? -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue46

[issue20369] concurrent.futures.wait() blocks forever when given duplicate Futures

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11. -- components: +Library (Lib) nosy: +iritkatriel type: -> behavior versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/issu

[issue20369] concurrent.futures.wait() blocks forever when given duplicate Futures

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy -patch ___ Python tracker <https://bugs.python.org/issue20369> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45636] Merge BINARY_*/INPLACE_* into BINARY_OP

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +iritkatriel nosy_count: 3.0 -> 4.0 pull_requests: +28293 pull_request: https://github.com/python/cpython/pull/30073 ___ Python tracker <https://bugs.python.org/issu

[issue45636] Merge BINARY_*/INPLACE_* into BINARY_OP

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: -28293 ___ Python tracker <https://bugs.python.org/issue45636> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45635] Tidy up error handling in traceback.c / python run.c

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +28295 pull_request: https://github.com/python/cpython/pull/30073 ___ Python tracker <https://bugs.python.org/issue45

[issue45636] Merge BINARY_*/INPLACE_* into BINARY_OP

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +28294 pull_request: https://github.com/python/cpython/pull/30073 ___ Python tracker <https://bugs.python.org/issue45

[issue1599254] mailbox: other programs' messages can vanish without trace

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11 - the test in mailbox-test.patch fails. -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.

[issue27258] Exception in BytesGenerator.flatten

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: I am also unable to reproduce the issue on 3.11 with the attached script and input. Please create a new issue if this problem still exists in a current python version (>= 3.9). -- nosy: +iritkatriel resolution: -> works for me stage: ->

[issue37602] nonzero fixer problem

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +iritkatriel nosy_count: 5.0 -> 6.0 pull_requests: +28297 status: pending -> open pull_request: https://github.com/python/cpython/pull/30075 ___ Python tracker <https://bugs.python.org/i

[issue25299] argparse: TypeError: __init__() takes at least 4 arguments (4 given)

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: This is working on 3.11: >>> from argparse import ArgumentParser >>> parser = ArgumentParser() >>> parser.add_argument("--foo", help="foo", action='store_const') _StoreConstAction(option_strings=['

[issue39306] Lib/configparser.py - RawConfigParser.set does not pass non-truthy values through to Interpolation.before_set

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: Hans, as mentioned on the PR, the merit of this change needs to be discussed. If you would like to pursue this, please begin by explaining the use case. If you lost interest in this problem, let's close this issue. -- nosy: +iritkatriel status:

[issue12165] [doc] clarify documentation of nonlocal

2021-12-12 Thread Irit Katriel
Irit Katriel added the comment: The doc has been updated by now and mentions "excluding globals". I'm changing the title to reflect Terry's last comment. One comment on his suggestion: I would remove/change "the nonlocal statement is similar to the global statement&

[issue20907] behavioral differences between shutil.unpack_archive and ZipFile.extractall

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.3, Python 3.4 ___ Python tracker <https://bugs.python.org/issue20907> ___ ___ Python-bugs-list mailin

[issue20741] Documentation archives should be available also in tar.xz format

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue20741] Documentation archives should be available also in tar.xz format

2021-12-12 Thread Irit Katriel
Change by Irit Katriel : -- status: closed -> pending ___ Python tracker <https://bugs.python.org/issue20741> ___ ___ Python-bugs-list mailing list Unsubscrib

  1   2   3   4   5   6   7   8   9   10   >