[issue3702] test_urllib2.test_trivial fails when run from another Windows drive

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: This was fixed under issue7648. -- nosy: +iritkatriel resolution: -> duplicate stage: test needed -> resolved status: open -> closed superseder: -> test_urllib2 fails on Windows if not run from C: __

[issue32915] Running Python 2 with -3 flag doesn't complain about cmp/__cmp__

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: We're not going to make changes in python 2 anymore, so this can be closed, right? -- nosy: +iritkatriel resolution: -> out of date status: open -> pending ___ Python tracker <https://bugs.python.

[issue23833] email.header.Header folding modifies headers that include semi-colons

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

[issue38575] Child process deadlock in subprocess.Popen

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: Python 2.7 is no longer supported and the code of subprocess has been changed a lot compared to what shows up in your traceback. Please create a new issue if you still see this problem in Python 3.9+. -- nosy: +iritkatriel resolution: -> out of d

[issue26952] argparse help formatter raises IndexError

2021-05-28 Thread Irit Katriel
Change by Irit Katriel : -- title: argparse help formatter crashes -> argparse help formatter raises IndexError versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7 ___ Python tracker <https://bugs.python.org/issu

[issue12480] urllib2 doesn't use proxy (fieddler2), configed the proxy with ProxyHandler

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: I think the problem is still there: https://github.com/python/cpython/blame/bb3e0c240bc60fe08d332ff5955d54197f79751c/Lib/urllib/request.py#L2746 if proxyOverride ends with a ';' then the last "" is considered a match

[issue23443] XMLRPCLIB Exception uses str not class or instance

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: It's not at all clear what raised this exception. Furthermore, Python 2.7 is no longer under maintenance. If you have this issue with python 3.9+ please create a new issue with instructions how to reproduce it, or at least a full traceback of the exce

[issue26740] tarfile: accessing (listing and extracting) tarball fails with UnicodeDecodeError

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: Python 2.7 is no longer maintained. There aren't enough details here to tell whether the issue was fixed in python 3. If you are having this problem with python 3.9+, please create a new issue. -- nosy: +iritkatriel resolution: -> out of da

[issue32983] UnicodeDecodeError 'ascii' codec can't decode byte in position - ordinal not in range(128)

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: Jiri, if you are still having this problem in 3.9+, and Glenn's suggestion to escape the error is not helpful, please create a new issue and include code to reproduce it. Python 2.7 is no longer maintained. -- nosy: +iritkatriel resolution: -

[issue16533] HPUX: Unable to fork() in thread

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

[issue35427] logging UnicodeDecodeError from undecodable strftime output

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: Since this is not relevant to python 3, I think this issue can be closed. -- nosy: +iritkatriel resolution: -> out of date status: open -> pending ___ Python tracker <https://bugs.python.org/i

[issue25957] sockaddr_l2 lacks CID, address type (AF_BLUETOOTH sockets)

2021-05-28 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +steve.dower ___ Python tracker <https://bugs.python.org/issue25957> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6338] Error message displayed on stderr when no C compiler is present with ctypes

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

[issue24906] asyncore asynchat hanging on ssl

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: asyncore and asynchat are deprecated since 3.6, so this is not going to be fixed. Use asyncio instead. -- nosy: +iritkatriel resolution: -> wont fix stage: -> resolved status: open -> closed ___ Pytho

[issue21531] doc: asyncore does not support UDP

2021-05-28 Thread Irit Katriel
Change by Irit Katriel : -- assignee: -> docs@python components: +Documentation keywords: +easy nosy: +docs@python title: Sending a zero-length UDP packet to asyncore invokes handle_close() -> doc: asyncore does not support UDP versions: +Python 3.10, Python 3.11, Python 3.9 -

[issue12210] test_smtplib: intermittent failures on FreeBSD

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: 2.7-only issue. -- nosy: +iritkatriel resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue34219] distutils: build_ext -D wrongly assume defining a symbol with no value

2021-05-29 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +steve.dower ___ Python tracker <https://bugs.python.org/issue34219> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42085] Add dedicated slot for sending values

2021-05-29 Thread Irit Katriel
Irit Katriel added the comment: New changeset 0b11c429c7f1721d9ffb9ae19e3e8e2e7bd6444d by Martmists in branch 'main': bpo-42085: [docs] Add versionadded for am_send in type object documentation (GH-25465) https://github.com/python/cpython/commit/0b11c429c7f1721d9ffb9ae19e3e8e

[issue42085] Add dedicated slot for sending values

2021-05-29 Thread Irit Katriel
Irit Katriel added the comment: New changeset d338ce0796e5fe8e54dfe52f93ed9d5936ad3efe by Miss Islington (bot) in branch '3.10': bpo-42085: [docs] Add versionadded for am_send in type object documentation (GH-25465) (GH-26453) https://github.com/python/cpyt

[issue44272] DeprecationWarning: The *random* parameter to shuffle() has been deprecated since Python 3.9 and will be removed in a subsequent version

2021-05-31 Thread Irit Katriel
Irit Katriel added the comment: What were you expecting? The documentation is here: https://docs.python.org/3/library/random.html -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue44

[issue44271] asyncio random carsh with longtime run

2021-05-31 Thread Irit Katriel
Irit Katriel added the comment: What’s the output, what system are you using? -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue44

[issue44272] DeprecationWarning: The *random* parameter to shuffle() has been deprecated since Python 3.9 and will be removed in a subsequent version

2021-05-31 Thread Irit Katriel
Irit Katriel added the comment: If you pass an integer to a function that expects a sequence you get an error message (in most languages). Please read the documentation. -- ___ Python tracker <https://bugs.python.org/issue44

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-01 Thread Irit Katriel
New submission from Irit Katriel : "suppresses any of the specified exceptions if they occur in the body of a with statement" Should be: "suppresses any of the specified exceptions if they are raised in the body of a with statement" -- assignee: do

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-01 Thread Irit Katriel
Irit Katriel added the comment: New changeset 87272b70f157af76cb14ff90d73dfc5d9bfb945a by MapleCCC in branch 'main': bpo-44279: [doc] reword contextlib.suppress documentation (GH-26428) https://github.com/python/cpython/commit/87272b70f157af76cb14ff90d73dfc

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-01 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +25077 pull_request: https://github.com/python/cpython/pull/26480 ___ Python tracker <https://bugs.python.org/issue44

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-01 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +25078 pull_request: https://github.com/python/cpython/pull/26481 ___ Python tracker <https://bugs.python.org/issue44

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-01 Thread Irit Katriel
Irit Katriel added the comment: New changeset 6563ea5c60be2e4896df52eff777aa93743f1551 by Irit Katriel in branch '3.10': [3.10] bpo-44279: [doc] reword contextlib.suppress documentation (GH-26428) (GH-26480) https://github.com/python/cpython/commit/6563ea5c60be2e4896df52eff777aa

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-01 Thread Irit Katriel
Irit Katriel added the comment: New changeset 9a688624973a2b753b84f892b65268543c7ff67d by Irit Katriel in branch '3.9': [3.9] bpo-44279: [doc] reword contextlib.suppress documentation (GH-26428) (GH-26481) https://github.com/python/cpython/commit/9a688624973a2b753b84f892b65268

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-01 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-02 Thread Irit Katriel
Irit Katriel added the comment: I see, that’s a good point. Any suggestion regarding the original confusion with warnings? (See PR 26428). -- status: closed -> open ___ Python tracker <https://bugs.python.org/issu

[issue17792] Unhelpful UnboundLocalError due to del'ing of exception target

2021-06-02 Thread Irit Katriel
Irit Katriel added the comment: New changeset 7b1f527d5b37dc3aa085ebbe11a1a2dd29ef210f by Irit Katriel in branch 'main': bpo-17792: more accurate error message for unbound variable access exceptions (GH-24976) https://github.com/python/cpython/commit/7b1f527d5b37dc3aa085ebbe11a1a2

[issue17792] Unhelpful UnboundLocalError due to del'ing of exception target

2021-06-02 Thread Irit Katriel
Irit Katriel added the comment: Following a discussion on PR24976 we opted for "cannot access local variable 'x' where it is not associated with a value" This is because binding it not always related to assignment. I don't know whether this completely resolves thi

[issue44284] Python references wrong line but correct line number in traceback

2021-06-02 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Unupdated source file in traceback ___ Python tracker <https://bugs.python

[issue44280] unittest filters out too many assertion stack frames from context/cause chains

2021-06-02 Thread Irit Katriel
Irit Katriel added the comment: Agreed. -- nosy: +iritkatriel resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> unittest swallows part of stack trace when raising AssertionError in a TestCase ___ Py

[issue20393] Docs: mark deprecated items in the TOC

2021-06-02 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 2.7, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issue20

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-02 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +25088 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/26492 ___ Python tracker <https://bugs.python.org/issu

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-04 Thread Irit Katriel
Irit Katriel added the comment: New changeset dda9ecbfece28aad7b8ba7eaf7951dd9816f78b1 by Irit Katriel in branch 'main': bpo-44279: revert 'exceptions are raised' back to 'exceptions occur' (GH-26492) https://github.com/python/cpython/commit/dda9ecbfec

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-04 Thread Irit Katriel
Irit Katriel added the comment: New changeset ea298e1e33eb03b2b4ea2f4556e59b11e3bf240f by Miss Islington (bot) in branch '3.9': bpo-44279: revert 'exceptions are raised' back to 'exceptions occur' (GH-26492) (GH-26539) https://gi

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-04 Thread Irit Katriel
Irit Katriel added the comment: New changeset 1065ba66b535b786d6dc5f7d912c6486d9a834ae by Miss Islington (bot) in branch '3.10': bpo-44279: revert 'exceptions are raised' back to 'exceptions occur' (GH-26492) (GH-26538) https://gi

[issue44279] doc: contextlib.suppress documentation is imprecise

2021-06-04 Thread Irit Katriel
Change by Irit Katriel : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue44279> ___ ___ Pyth

[issue44187] Implement infrastructure for quickening and specializing

2021-06-07 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/issue44187> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44366] Define functions without parentheses (if no parameters given)

2021-06-09 Thread Irit Katriel
Irit Katriel added the comment: The python-ideas mailing list is a better place for such questions than the bug tracker. -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue44

[issue44347] Unclear documentation for shutil.copytree()

2021-06-09 Thread Irit Katriel
Irit Katriel added the comment: >From the code, this arg is simply passed to os.mkdirs() here: https://github.com/python/cpython/blob/e6e34e45222b9c7a63ba92386612acf768082ba0/Lib/shutil.py#L450 os.mkdir is documented here: https://docs.python.org/3/library/os.html#os.makedirs and says j

[issue44347] Unclear documentation for shutil.copytree()

2021-06-09 Thread Irit Katriel
Change by Irit Katriel : -- components: +Library (Lib) versions: +Python 3.11 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue44347> ___ ___ Pytho

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-10 Thread Irit Katriel
Irit Katriel added the comment: Your fix looks correct - the problem is that the list of breakpoints gets emptied by the clear_break call, and you copy the list so that it can be echoed later if clear_break does not err. I made some polishing comments on the PR, and it also need to be

[issue37022] pdb: do_p and do_pp swallow exceptions from __repr__

2021-06-10 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11 -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue37022> ___ ___ Python-bug

[issue37022] pdb: do_p and do_pp swallow exceptions from __repr__

2021-06-10 Thread Irit Katriel
Irit Katriel added the comment: New changeset 6544b2532df82d137b71323445a07a6e29bcdec0 by Daniel Hahler in branch 'main': bpo-37022: Fix bug where pdb's do_p/do_pp commands swallow exceptions from repr (GH-18180) https://github.com/python

[issue37022] pdb: do_p and do_pp swallow exceptions from __repr__

2021-06-10 Thread Irit Katriel
Irit Katriel added the comment: New changeset e3bc32fc1ad5537b476b34062b07a040533c913a by Miss Islington (bot) in branch '3.10': bpo-37022: Fix bug where pdb's do_p/do_pp commands swallow exceptions from repr (GH-18180) (GH-26650) https://github.com/python

[issue37022] pdb: do_p and do_pp swallow exceptions from __repr__

2021-06-10 Thread Irit Katriel
Irit Katriel added the comment: New changeset 175ebc60d52f2e88cf5cba5224c15074d2623c10 by Miss Islington (bot) in branch '3.9': bpo-37022: Fix bug where pdb's do_p/do_pp commands swallow exceptions from repr (GH-18180) (GH-26651) https://github.com/python

[issue37022] pdb: do_p and do_pp swallow exceptions from __repr__

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

[issue34266] Bad behavior with "restart \" or "restart "" in pdb

2021-06-10 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch nosy: +iritkatriel nosy_count: 2.0 -> 3.0 pull_requests: +25242 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26656 ___ Python tracker <https://bugs.python.org/i

[issue19094] urljoin should raise a TypeError if URL is not a string

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

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset 4cb6ba14325cff98589c2660d1d2c65f4aacfee4 by huzhaojie in branch 'main': bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints (GH-24646) https://github.com/python/cpython/commit/4cb6ba14325cff98589c2660d1d2c6

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset 9c0180ae7761b352116a2528aae61eea10e31045 by Miss Islington (bot) in branch '3.10': bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints (GH-24646) (GH-26674) https://github.com/python/cpyt

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset 6df926f1c46eb6db7b5dcd0227c6b532c78525c9 by Miss Islington (bot) in branch '3.9': bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints (GH-24646) (GH-26675) https://github.com/python/cpyt

[issue43318] pdb does not output the prompt message when successfully clear breakpoints by "filename:lineno"

2021-06-11 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36663] pdb: store whole exception information in locals (via user_exception)

2021-06-12 Thread Irit Katriel
Irit Katriel added the comment: Isn't it enough that the traceback is available on exc_value.__traceback__? -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/is

[issue43803] ctypes string_at/wstring_at - bad argument name used in docs and in docstring

2021-06-14 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue43803> ___ ___ Python-bugs-list mailing list Unsub

[issue42387] Pdb should restore the execution environment before reexecuting the target

2021-06-14 Thread Irit Katriel
Irit Katriel added the comment: I recently fixed a bug where breakpoints were not saved properly between reruns of the program - the assumption there was that if you set a breakpoint you don't want to have to set it again and again. Similarly, how do you know that the change to sys

[issue25682] __package__ not set to None under pdb in Python 3

2021-06-14 Thread Irit Katriel
Irit Katriel added the comment: pdb imports the module with importlib, and populates __main__ with data from its spec, including the package. This doesn't contradict the fact that the python command line can have only one "-m". What is the actual problem here? -- nos

[issue31289] File paths in exception traceback resolve symlinks

2021-06-14 Thread Irit Katriel
Irit Katriel added the comment: Closing as there doesn't seem to be interest in this currently. If you would like to pursue it, please bring it up for discussion on python-ideas. The semantics you request are not the only obvious option, so this needs to be agreed. --

[issue31248] method wrapper type has invalid __name__/__qualname__ 'method-wrapper'

2021-06-14 Thread Irit Katriel
Irit Katriel added the comment: Closing as it's not clear what the problem is. Please reopen or create a new issue if you can explain. -- resolution: -> not a bug stage: -> resolved status: pending -> closed ___ Python t

[issue3014] file_dealloc() assumes errno is set when EOF is returned

2021-06-14 Thread Irit Katriel
Change by Irit Katriel : -- stage: patch review -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue3014> ___ ___ Pyth

[issue29799] Add tests for header API of 'urllib.request.Request' class

2021-06-14 Thread Irit Katriel
Irit Katriel added the comment: Closing as this seems abandoned. Please reopen or create a new issue if you would like to continue working on it. -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.p

[issue7089] shlex behaves unexpected if newlines are not whitespace

2021-06-14 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 3.3 ___ Python tracker <https://bugs.python.org/issue7

[issue7089] shlex behaves unexpected if newlines are not whitespace

2021-06-14 Thread Irit Katriel
Irit Katriel added the comment: I've reproduced on 3.11. -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue7089> ___ ___ Python-bugs-l

[issue31643] test_uuid: test_getnode and test_windll_getnode fail if connected to the Internet via an Android phone

2021-06-14 Thread Irit Katriel
Change by Irit Katriel : -- keywords: -patch 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/issue31

[issue25682] __package__ not set to None under pdb in Python 3

2021-06-14 Thread Irit Katriel
Irit Katriel added the comment: Thanks Keith. Closing and we can look into it if someone else has an issue. -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue30260] sock_dealloc() may call __repr__ when socket class is already collected by GC

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: Since this is fixed in 3.6 and it’s too late for 3.5, I think this issue can be closed. -- nosy: +iritkatriel resolution: -> out of date status: open -> pending ___ Python tracker <https://bugs.p

[issue32322] Heap type with Py_TPFLAGS_HAVE_GC leads to segfault due to not incrementing type object refcout in PyObject_GC_New

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: Are you sure? It seems to me that they both incref the type object in _PyObject_Init: https://github.com/python/cpython/blob/689a84475e7b1da79d5ae82df67ab8897316f98c/Include/internal/pycore_object.h#L43 -- nosy: +iritkatriel

[issue32322] Heap type with Py_TPFLAGS_HAVE_GC leads to segfault due to not incrementing type object refcout in PyObject_GC_New

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: Do you still have the code that created the crash? It would help to understand what you are/were seeing. -- ___ Python tracker <https://bugs.python.org/issue32

[issue39217] GC of a ctypes object causes application crash

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: As Terry suggested, it would be better to establish whether this is a python bug by asking on python-list, where more people are likely to see your question. A complete script reproducing the crash is *always* better than a verbal description that we may or

[issue40240] Expose public spelling of _PyGC_FINALIZED and _PyGC_SET_FINALIZED?

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed now? It seems that the query API was added and the set API was rejected. -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue40

[issue32322] Heap type with Py_TPFLAGS_HAVE_GC leads to segfault due to not incrementing type object refcout in PyObject_GC_New

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: Thanks! -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue23035] python -c: Line causing exception not shown for exceptions other than SyntaxErrors

2021-06-15 Thread Irit Katriel
Change by Irit Katriel : -- type: -> enhancement versions: +Python 3.11 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue23035> ___ ___ Python-

[issue29126] Fix comments about _PyThreadState_Current

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: These comments have been removed in the meantime, here: https://github.com/python/cpython/commit/59d3dce69b0a4f6ee17578ae68037cc7ae90936f -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -&g

[issue27607] Importing the main module twice leads to two incompatible instances

2021-06-15 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue27607> ___ ___ Python-bugs-list mailing list Unsub

[issue16663] Poor documentation for METH_KEYWORDS

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: This part of the documentation was reworded in issue28805, making this issue out of date. -- nosy: +iritkatriel resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Add documentation for METH_

[issue4277] asynchat's handle_error inconsistency

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: asynchat has been deprecated for a long time, it's unlikely we will do anything with it now. -- nosy: +iritkatriel resolution: -> out of date stage: test needed -> resolved status: open -> closed ___

[issue29153] Test test.test_asynchat.TestAsynchat / test.test_asynchat.TestAsynchat_WithPoll fail test_close_when_done

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: asynchat is deprecated since version 3.6 so there won't be any more development related to it. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python t

[issue8772] sysconfig: _get_default_scheme can be made public?

2021-06-15 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.2 ___ Python tracker <https://bugs.python.org/issue8772> ___ ___ Python-bugs-list mailing list Unsub

[issue14445] Providing more fine-grained control over assert statements

2021-06-16 Thread Irit Katriel
Irit Katriel added the comment: I am closing this because there was no followup for over 9 years. If you are still interested in pursuing this, please raise it for discussion on python-ideas and open a new issue once there is agreement on how to proceed. -- nosy: +iritkatriel

[issue14879] invalid docs for subprocess exceptions with shell=True

2021-06-16 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker <https://bugs.python.org/issue14

[issue16437] issubclass doc improvement

2021-06-16 Thread Irit Katriel
Irit Katriel added the comment: Whether the recursive nature of the check should be documented or not, it seems inconsistent that it's documented for isinstance but not for issubclass. -- nosy: +iritkatriel versions: +Python 3.11 -Python 3.3, Pytho

[issue20115] NUL bytes in commented lines

2021-06-16 Thread Irit Katriel
Irit Katriel added the comment: This is still the same in 3.11. I added another line to the example's file, which shows more clearly what's happening: >>> open('x.py', 'wb').write(b'#\x00\na\nb\n') % ./python.exe x.py Traceback (most re

[issue23316] Incorrect evaluation order of function arguments with *args

2021-06-16 Thread Irit Katriel
Irit Katriel added the comment: I don't think this is true anymore: >>> def a(): ... print('a') ... return (1,2) ... >>> def b(): ... print('b') ... return (3,4) ... >>> def f(*args, b=None): ... print('f') ..

[issue23394] No garbage collection at end of main thread

2021-06-16 Thread Irit Katriel
Irit Katriel added the comment: For the use case you describe, you could add a close() function to your library so that callers can make shutdown explicit, or if you want it to remain implicit you could use daemon threads which terminate when the main thread exits. Relying on GC to release

[issue23786] test_unaligned_buffers (test.test_hash.HashEqualityTestCase) ... Fatal Python error: Bus error

2021-06-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be close (as third party?) or is there anything left to do? -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue23

[issue31772] SourceLoader uses stale bytecode in case of equal mtime seconds

2021-06-16 Thread Irit Katriel
Irit Katriel added the comment: Looks like this was merged here: https://github.com/akvadrako/cpython/commit/fe9b43a0928a5ef80a4daf3a50af300e5eaeda9a Can we close? -- nosy: +iritkatriel resolution: -> fixed status: open -> pending ___

[issue23394] No garbage collection at end of main thread

2021-06-16 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue23394> ___ ___

[issue23316] Incorrect evaluation order of function arguments with *args

2021-06-16 Thread Irit Katriel
Irit Katriel added the comment: It should be possible to make the compiler emit code that evaluates the arg values left to right in all cases. -- ___ Python tracker <https://bugs.python.org/issue23

[issue16437] issubclass doc improvement

2021-06-17 Thread Irit Katriel
Irit Katriel added the comment: @Ken - not quite. This issue is about isinstance containing "(or recursively, other such tuples)" which is not there for issubclass. -- ___ Python tracker <https://bugs.python.o

[issue16376] wrong type for wintypes.BYTE

2021-06-17 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +amaury.forgeotdarc, belopolsky versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issue16

[issue20115] NUL bytes in commented lines

2021-06-17 Thread Irit Katriel
Irit Katriel added the comment: See also issue1105770. -- ___ Python tracker <https://bugs.python.org/issue20115> ___ ___ Python-bugs-list mailing list Unsub

[issue9102] pybench: Cannot compare 2.x and 3.x benchmarks

2021-06-17 Thread Irit Katriel
Irit Katriel added the comment: Can we close this? I don't think we are still interested in performance comparisons with Python 2. -- nosy: +iritkatriel resolution: -> out of date status: open -> pending ___ Python trac

[issue12600] Add example of using load_tests to parameterise Test Cases

2021-06-17 Thread Irit Katriel
Irit Katriel added the comment: It remains to update the load_test doc along the lines of Michael's suggestion in msg140999. -- keywords: +easy nosy: +iritkatriel versions: +Python 3.11 -Python 2.7, Python 3.2, Python 3.3 ___ Python tr

[issue10582] PyErr_PrintEx exits silently when passed SystemExit exception

2021-06-17 Thread Irit Katriel
Irit Katriel added the comment: This was removed in https://github.com/python/cpython/pull/13390. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue43024] improve signature (in help, etc) for functions taking sentinel defaults

2021-06-17 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/issue43024> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14995] PyLong_FromString documentation should state that the string must be null-terminated

2021-06-17 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy type: -> enhancement versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/issue14995> ___ ___ Py

[issue38146] QVariant NULL returns anomalous values in equality statements

2021-06-17 Thread Irit Katriel
Irit Katriel added the comment: This looks like an issue with the way QVariant is defined. I'm not sure why you are reporting it as a Python bug? -- nosy: +iritkatriel resolution: -> third party status: open -> pending ___ Python trac

<    8   9   10   11   12   13   14   15   16   17   >