[issue32133] documentation: numbers module nitpick

2021-05-09 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.6 ___ Python tracker <https://bugs.python.org/issue32

[issue31604] unittest.TestLoader().loadTestsFromTestCase(...) fails when adding test cases with the expectedFailure decorator

2021-05-10 Thread Irit Katriel
Irit Katriel added the comment: I can't reproduce the issue on 3.10, I believe it was fixed by this: https://github.com/python/cpython/commit/c9b3ef2df06818f055e555c1d23e3ff2d5bf2d74 in particular: - def expectedFailure(func): - @functools.wraps(func) - def wrapper(*args, **k

[issue34367] AsyncResult.get() only notifies one thread

2021-05-10 Thread Irit Katriel
Irit Katriel added the comment: Fixed in Python 3 and Python 2 is past EOL. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue21501] docs: mmap example for use in documentation

2021-05-10 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy title: submitting mmap example for use in documentation -> docs: mmap example for use in documentation versions: +Python 3.11 -Python 2.7 ___ Python tracker <https://bugs.python.org/issu

[issue25821] Documentation for threading.enumerate / threading.Thread.is_alive is contradictory.

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

[issue25821] Documentation for threading.enumerate / threading.Thread.is_alive is contradictory.

2021-05-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset 7bef7a180da56e0399f4dec2c992bb101470fc73 by Miss Islington (bot) in branch '3.10': bpo-25821: Fix inaccuracy in threading.enumerate/is_alive documentation (GH-23192) (#26035) https://github.com/python/cpyt

[issue25821] Documentation for threading.enumerate / threading.Thread.is_alive is contradictory.

2021-05-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset bde14f7fbd5f11bb40d9c314bd74eaa231236c6b by Miss Islington (bot) in branch '3.9': bpo-25821: Fix inaccuracy in threading.enumerate/is_alive documentation (GH-23192) (#26036) https://github.com/python/cpyt

[issue25821] Documentation for threading.enumerate / threading.Thread.is_alive is contradictory.

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

[issue28528] Pdb.checkline()

2021-05-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 3.7 ___ Python tracker <https://bugs.python.org/issue28

[issue28528] Pdb.checkline() attribute error when 'curframe' is missing

2021-05-11 Thread Irit Katriel
Change by Irit Katriel : -- title: Pdb.checkline() -> Pdb.checkline() attribute error when 'curframe' is missing ___ Python tracker <https://bugs.pytho

[issue10548] document (lack of) interaction between @expectedFailure on a test_method and setUp

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

[issue10548] document (lack of) interaction between @expectedFailure on a test_method and setUp

2021-05-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset c9049cf0aa9917abfd51b27e4258c395c5f66ff4 by Miss Islington (bot) in branch '3.9': bpo-10548: expectedFailure does not apply to fixtures (GH-23201) (#26045) https://github.com/python/cpython/commit/c9049cf0aa9917abfd51b27e4258c3

[issue10548] document (lack of) interaction between @expectedFailure on a test_method and setUp

2021-05-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset 1e4ca09d825cc8059bbf80c8137164816b84cfe7 by Miss Islington (bot) in branch '3.10': bpo-10548: expectedFailure does not apply to fixtures (GH-23201) (#26044) https://github.com/python/cpython/commit/1e4ca09d825cc8059bbf80c8137164

[issue10548] document (lack of) interaction between @expectedFailure on a test_method and setUp

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

[issue28528] Pdb.checkline() attribute error when 'curframe' is None

2021-05-11 Thread Irit Katriel
Change by Irit Katriel : -- title: Pdb.checkline() attribute error when 'curframe' is missing -> Pdb.checkline() attribute error when 'curframe' is None ___ Python tracker <https://

[issue28528] Pdb.checkline() attribute error when 'curframe' is None

2021-05-11 Thread Irit Katriel
Irit Katriel added the comment: New changeset c90ed8e2e79ebd64f72c621b5a2ab06ec4c7210c by Miss Islington (bot) in branch '3.10': bpo-28528: Fix pdb.checkline() attribute error when 'curframe' is None. (GH-25438) (#26050) https://github.com/p

[issue28528] Pdb.checkline() attribute error when 'curframe' is None

2021-05-11 Thread Irit Katriel
Irit Katriel added the comment: The 3.9 backport failed because of test failures like: == ERROR: test_checkline_is_not_executable (test.test_pdb.ChecklineTests

[issue41620] Python Unittest does not return results object when the test is skipped

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

[issue41620] Python Unittest does not return results object when the test is skipped

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: Actually I take it back - this looks like a bug. The code updates the result object with skip info but then doesn't return it. But the patch needs a unit test covering this. -- keywords: +easy ___ Python tr

[issue28528] Pdb.checkline() attribute error when 'curframe' is None

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: Thank you Erlend! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue40640] Tutorial for Continue missing ... line

2021-05-12 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +24695 pull_request: https://github.com/python/cpython/pull/26055 ___ Python tracker <https://bugs.python.org/issue40

[issue37555] _CallList.__contains__ doesn't always respect ANY.

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: 3.8 is in security fix mode now, so I think this issue can be closed. -- resolution: -> fixed status: open -> pending ___ Python tracker <https://bugs.python.org/i

[issue40640] Tutorial for Continue missing ... line

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: New changeset 48cb11bf5b426bd3f1d010f987c03115661261b7 by Miss Islington (bot) in branch '3.10': bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26057) https://github.com/python/cpython/commit/48cb11bf5b426bd3f1d010f987c031

[issue40640] Tutorial for Continue missing ... line

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: New changeset ada9cdb94158a101db65af17b62cdd2ae6c3e782 by Miss Islington (bot) in branch '3.9': bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26058) https://github.com/python/cpython/commit/ada9cdb94158a101db65af17b62cdd

[issue40640] Tutorial for Continue missing ... line

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: Thank you Chas! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue25479] Increase unit test coverage for abc.py

2021-05-12 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11, Python 3.9 ___ Python tracker <https://bugs.python.org/issue25479> ___ ___ Python-bugs-list mailing list Unsub

[issue25479] Increase unit test coverage for abc.py

2021-05-12 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +24706 pull_request: https://github.com/python/cpython/pull/26065 ___ Python tracker <https://bugs.python.org/issue25

[issue25479] Increase unit test coverage for abc.py

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: New changeset 1be93960612b29686d42c021f842e63e5143a625 by Miss Islington (bot) in branch '3.9': bpo-25479: add unit test for __subclasshook__ in test_abc.py (GH-24034) (GH-26063) https://github.com/python/cpyt

[issue25479] Increase unit test coverage for abc.py

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: New changeset bd5dfd6c8c133ccda4dddcba3a8c5a9ea1aa1d6b by Irit Katriel in branch '3.10': [3.10] bpo-25479: add unit test for __subclasshook__ in test_abc.py (GH-24034) (GH-26065) https://github.com/python/cpyt

[issue43656] StackSummary.format fails if repr(value) fails

2021-05-12 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39228] traceback.FrameSummary does not handle exceptions from `repr()`

2021-05-12 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue25479] Increase unit test coverage for abc.py

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: Thank you! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue33809] Expose `capture_locals` parameter in `traceback` convenience functions

2021-05-12 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.10 ___ Python tracker <https://bugs.python.org/issue33809> ___ ___ Python-bugs-list mailin

[issue44030] Markup with_traceback code example

2021-05-12 Thread Irit Katriel
Irit Katriel added the comment: New changeset 6275ea02825731fd23f523058ac87aac53888740 by Miss Islington (bot) in branch '3.10': bpo-44030: Fix formatting error in exceptions docs (GH-25929) (GH-26086) https://github.com/python/cpython/commit/6275ea02825731fd23f523058ac87a

[issue44030] Markup with_traceback code example

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

[issue1662] [patch] assert tp_traverse in PyType_GenericAlloc()

2021-05-14 Thread Irit Katriel
Irit Katriel added the comment: tp_traverse is optional, so we should not add this assertion. -- resolution: -> rejected stage: test needed -> resolved status: open -> closed ___ Python tracker <https://bugs.python.o

[issue43729] Tutorial Documentation for 3.1.1. Numbers missing "result"

2021-05-14 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11 ___ Python tracker <https://bugs.python.org/issue43729> ___ ___ Python-bugs-list mailin

[issue30274] Rename 'name' to 'fullname' argument to ExtensionFileLoader

2021-05-14 Thread Irit Katriel
Irit Katriel added the comment: The PR was reviewed but it now has merge conflicts and possibly a test failure on MacOS. -- components: +Library (Lib) -Documentation keywords: +easy nosy: +iritkatriel title: Make importlib.abc.ExtensionFileLoader.__init__() documentation match code

[issue41620] Python Unittest does not return results object when the test is skipped

2021-05-16 Thread Irit Katriel
Change by Irit Katriel : -- Removed message: https://bugs.python.org/msg384971 ___ Python tracker <https://bugs.python.org/issue41620> ___ ___ Python-bugs-list m

[issue41620] Python Unittest does not return results object when the test is skipped

2021-05-16 Thread Irit Katriel
Change by Irit Katriel : -- Removed message: https://bugs.python.org/msg393489 ___ Python tracker <https://bugs.python.org/issue41620> ___ ___ Python-bugs-list m

[issue41620] Python Unittest does not return results object when the test is skipped

2021-05-16 Thread Irit Katriel
Irit Katriel added the comment: I agree with Iman that this looks like a bug because the code updates the result object with skip info but then doesn't return it. The patch needs a unit test covering this, as well as probably a doc u

[issue40172] ZipInfo corrupts file names in some old zip archives

2021-05-16 Thread Irit Katriel
Irit Katriel added the comment: Can you suggest a unit test for this? -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue40172> ___ ___ Pytho

[issue36464] Python 2.7 build install fails intermittently with -j on MacOS

2021-05-16 Thread Irit Katriel
Irit Katriel added the comment: I closed PR 13186 because the change in it was already committed under issue36464. Can this issue be closed now as well or is there anything left to look into? -- nosy: +iritkatriel ___ Python tracker <ht

[issue25872] multithreading traceback KeyError when modifying file

2021-05-18 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +24828 pull_request: https://github.com/python/cpython/pull/26211 ___ Python tracker <https://bugs.python.org/issue25

[issue25872] multithreading traceback KeyError when modifying file

2021-05-18 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +24829 pull_request: https://github.com/python/cpython/pull/26212 ___ Python tracker <https://bugs.python.org/issue25

[issue25872] multithreading traceback KeyError when modifying file

2021-05-18 Thread Irit Katriel
Change by Irit Katriel : -- components: +Library (Lib) -Interpreter Core ___ Python tracker <https://bugs.python.org/issue25872> ___ ___ Python-bugs-list mailin

[issue25872] multithreading traceback KeyError when modifying file

2021-05-18 Thread Irit Katriel
Irit Katriel added the comment: New changeset 373741a97c9f6ffee427c2b4eaccb74347af228a by Irit Katriel in branch '3.10': [3.10] bpo-25872: Add unit tests for linecache and threading (GH-25913) (GH-26212) https://github.com/python/cpython/commit/373741a97c9f6ffee427c2b4eaccb7

[issue25872] multithreading traceback KeyError when modifying file

2021-05-18 Thread Irit Katriel
Irit Katriel added the comment: New changeset c05d8a6b67785450b1fec0d30fe26d5478bc4f0b by Irit Katriel in branch '3.9': bpo-25872: Add unit tests for linecache and threading (GH-25913) (GH-26211) https://github.com/python/cpython/commit/c05d8a6b67785450b1fec0d30fe26d

[issue25872] multithreading traceback KeyError when modifying file

2021-05-18 Thread Irit Katriel
Irit Katriel added the comment: @uniocto - thank you for the tests. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2021-05-18 Thread Irit Katriel
Irit Katriel added the comment: 3.7 is no longer getting bugfixes. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue40670] supplying an empty string to timeit causes an IndentationError

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

[issue7760] [doc] ctypes: use_errno=True does not work

2021-05-18 Thread Irit Katriel
Irit Katriel added the comment: The recommendation not to use absolute paths in CDLL is still not mentioned in the docs: https://docs.python.org/3/library/ctypes.html#ctypes.CDLL Adding the (active) ctypes experts to nosy. -- components: +Documentation keywords: +easy nosy

[issue35765] Document references object x but doesn't show it in the example

2021-05-18 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue42783] asyncio.sleep(0) idiom is not documented

2021-05-18 Thread Irit Katriel
Irit Katriel added the comment: New changeset 632b4034ab517b5d7f302c94fd9dc5a28c85f049 by Ken Jin in branch '3.9': [3.9] bpo-42783: Documentation for asyncio.sleep(0) (GH-24002) (GH-24153) https://github.com/python/cpython/commit/632b4034ab517b5d7f302c94fd9dc5a28c85f049 -

[issue42783] asyncio.sleep(0) idiom is not documented

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

[issue35765] Document references object x but doesn't show it in the example

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

[issue35765] Document references object x but doesn't show it in the example

2021-05-19 Thread Irit Katriel
Irit Katriel added the comment: New changeset 74eb94af2b0ca652d4b6b9b853601a8b8ac7dca1 by Miss Islington (bot) in branch '3.9': bpo-35765: Clarify references to "object x" in the JSON tutorial (GH-22411) (GH-26219) https://github.com/p

[issue35765] Document references object x but doesn't show it in the example

2021-05-19 Thread Irit Katriel
Irit Katriel added the comment: New changeset 5f2afff1ddbf11c8dfa9ddc98fb7a2f2d86eabde by Miss Islington (bot) in branch '3.10': bpo-35765: Clarify references to "object x" in the JSON tutorial (GH-22411) (GH-26218) https://github.com/p

[issue29298] argparse fails with required subparsers, un-named dest, and empty argv

2021-05-19 Thread Irit Katriel
Irit Katriel added the comment: crash means segfault, not unhandled exception. -- nosy: +iritkatriel type: crash -> behavior versions: +Python 3.10, Python 3.11 -Python 2.7, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <

[issue40811] Allow to create new Event Loops on Threads

2021-05-19 Thread Irit Katriel
Irit Katriel added the comment: Should this be closed as rejected or is there further discussion? -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue40

[issue40975] contextlib.AsyncExitStack enter_async_context and aclose should be labeled as coroutine methods

2021-05-19 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue40975> ___ ___ Python-bugs-list mailin

[issue40975] contextlib.AsyncExitStack enter_async_context and aclose should be labeled as coroutine methods

2021-05-19 Thread Irit Katriel
Irit Katriel added the comment: New changeset 9a75cc604455962fd226b58ed033da92e68dd3c8 by Miss Islington (bot) in branch '3.9': bpo-40975: [doc] Identify AsyncExitStack.enter_async_context()/aclose() as coroutine methods (GH-20870) (GH-26255) https://github.com/python/cpyt

[issue40975] contextlib.AsyncExitStack enter_async_context and aclose should be labeled as coroutine methods

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

[issue40975] contextlib.AsyncExitStack enter_async_context and aclose should be labeled as coroutine methods

2021-05-19 Thread Irit Katriel
Irit Katriel added the comment: New changeset 65dede60fa15703b4625240fbe11af0060f5cbb0 by Miss Islington (bot) in branch '3.10': bpo-40975: [doc] Identify AsyncExitStack.enter_async_context()/aclose() as coroutine methods (GH-20870) (GH-26254) https://github.com/python/cpyt

[issue11176] [doc] give more meaningful argument names in argparse documentation

2021-05-19 Thread Irit Katriel
Irit Katriel added the comment: It's been over six years, go for it. -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue11176> ___ ___

[issue42892] AttributeError in email.message.get_body()

2021-05-19 Thread Irit Katriel
Irit Katriel added the comment: Can you see how it happened that part is a str? -- ___ Python tracker <https://bugs.python.org/issue42892> ___ ___ Python-bug

[issue36160] Multiple errors in test_site.py on sysconfig._CONFIG_VARS.clear() if run on its own

2021-05-20 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue36

[issue36160] Multiple errors in test_site.py on sysconfig._CONFIG_VARS.clear() if run on its own

2021-05-20 Thread Irit Katriel
Irit Katriel added the comment: New changeset b9258b03b864520525176f927156b85a532a9d7c by Miss Islington (bot) in branch '3.9': bpo-36160: Fix test_site so that it can run independently of other tests (GH-12131) (GH-26263) https://github.com/python/cpyt

[issue36160] Multiple errors in test_site.py on sysconfig._CONFIG_VARS.clear() if run on its own

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

[issue36160] Multiple errors in test_site.py on sysconfig._CONFIG_VARS.clear() if run on its own

2021-05-20 Thread Irit Katriel
Irit Katriel added the comment: New changeset 4389711ce935bef3844dd24d7fe8460a5fef62e6 by Miss Islington (bot) in branch '3.10': bpo-36160: Fix test_site so that it can run independently of other tests (GH-12131) (GH-26262) https://github.com/python/cpyt

[issue41318] Better error message of "Cannot recover from stack overflow."

2021-05-20 Thread Irit Katriel
Irit Katriel added the comment: I am unable to reproduce the error with your code on 3.11. It could be that recent changes in recursion handling fixed this case. As I mentioned on the PR, adding this to the error message can make it even more confusing because this is not the only scenario

[issue36203] PyWeakref_NewRef docs are misleading

2021-05-20 Thread Irit Katriel
Irit Katriel added the comment: Please add unit tests to the patch. -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue36

[issue40736] better message for re.search TypeError ("expected string or bytes-like object")

2021-05-21 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.10 ___ Python tracker <https://bugs.python.org/issue40736> ___ ___ Python-bugs-list mailin

[issue19821] deprecate pydoc.ispackage()

2021-05-21 Thread Irit Katriel
Change by Irit Katriel : -- title: pydoc.ispackage() could be more accurate -> deprecate pydoc.ispackage() versions: +Python 3.11 -Python 3.5 ___ Python tracker <https://bugs.python.org/issu

[issue43556] fix attr names for ast.expr and ast.stmt

2021-05-21 Thread Irit Katriel
Irit Katriel added the comment: New changeset 96c9961bfe1ab471a6bcd4b6e9255af25865dde2 by Zackery Spytz in branch '3.9': bpo-43556: Fix the attr names for ast.expr and ast.stmt in the docs (GH-24940) https://github.com/python/cpython/commit/96c9961bfe1ab471a6bcd4b6e9255a

[issue43556] fix attr names for ast.expr and ast.stmt

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

[issue39710] "will be returned as unicode" reminiscent from Python 2

2021-05-21 Thread Irit Katriel
Irit Katriel added the comment: The open PR updates the docstrings in Lib/calendar.py but the corresponding changes in Doc/ still need to be added. -- nosy: +iritkatriel versions: +Python 3.10, Python 3.11 -Python 3.7, Python 3.8 ___ Python

[issue40736] better message for re.search TypeError ("expected string or bytes-like object")

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

[issue36494] bdb.Bdb.set_trace: should set f_trace_lines = True

2021-05-21 Thread Irit Katriel
Change by Irit Katriel : -- stage: patch review -> test needed versions: +Python 3.10, Python 3.11 -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue36494] bdb.Bdb.set_trace: should set f_trace_lines = True

2021-05-21 Thread Irit Katriel
Irit Katriel added the comment: The patch needs a test. -- nosy: +iritkatriel ___ Python tracker <https://bugs.python.org/issue36494> ___ ___ Python-bugs-list m

[issue8264] [doc] hasattr doesn't show private (double underscore) attributes exist

2021-05-22 Thread Irit Katriel
Irit Katriel added the comment: New changeset 11b5045b0ce18fee8cc1023cc516aeb14ebf7bda by Miss Islington (bot) in branch '3.9': bpo-8264: Document hasattr and getattr behavior for private attributes (GH-23513) (GH-26238) https://github.com/python/cpyt

[issue33809] Expose `capture_locals` parameter in `traceback` convenience functions

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

[issue29757] The loop in utility `socket.create_connection()` swallows previous errors

2021-05-22 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate superseder: -> OSError: multiple exceptions should preserve the exception type if it is common ___ Python tracker <https://bugs.python.org/i

[issue19083] IDNA prefix should be case insensitive

2021-05-22 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/issue19083> ___ ___ Python-bug

[issue41830] "NameError: name 'AttributeError' is not defined"

2021-05-26 Thread Irit Katriel
Irit Katriel added the comment: Sanka, please create a new issue if you can provide more info about the problem. -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/i

[issue21251] Standard library trace module crashes with exception

2021-05-26 Thread Irit Katriel
Irit Katriel added the comment: Martin, please create a new issue if this is still a problem in Python 3. -- resolution: -> out of date stage: needs patch -> resolved status: pending -> closed ___ Python tracker <https://bug

[issue27521] Misleading compress level header on files created with gzip

2021-05-26 Thread Irit Katriel
Change by Irit Katriel : -- stage: test needed -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/issue27521> ___ ___ Pyth

[issue37555] _CallList.__contains__ doesn't always respect ANY.

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

[issue41147] Document that redirect_std{out, err} yield the new stream as the context variable

2021-05-26 Thread Irit Katriel
Irit Katriel added the comment: New changeset 46db39d7bd67fb9fea133cd4f18cdf7eacb0f6d9 by Peter Law in branch 'main': bpo-41147: [doc] contextlib.redirect_stdout() provides the new stream as context var (GH-21199) https://github.com/python/cpyt

[issue41147] Document that redirect_std{out, err} yield the new stream as the context variable

2021-05-26 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11, Python 3.9 ___ Python tracker <https://bugs.python.org/issue41147> ___ ___ Python-bugs-list m

[issue41147] Document that redirect_std{out, err} yield the new stream as the context variable

2021-05-26 Thread Irit Katriel
Irit Katriel added the comment: New changeset 1261941e02cd04829592b1b1360b4ec21bfcdb9a by Miss Islington (bot) in branch '3.10': bpo-41147: [doc] contextlib.redirect_stdout() provides the new stream as context var (GH-21199) (GH-26379) https://github.com/python/cpyt

[issue41147] Document that redirect_std{out, err} yield the new stream as the context variable

2021-05-26 Thread Irit Katriel
Irit Katriel added the comment: New changeset bee66d3cb98e740f9d8057eb7f503122052ca5d8 by Miss Islington (bot) in branch '3.9': bpo-41147: [doc] contextlib.redirect_stdout() provides the new stream as context var (GH-21199) (GH-26380) https://github.com/python/cpyt

[issue41147] Document that redirect_std{out, err} yield the new stream as the context variable

2021-05-26 Thread Irit Katriel
Irit Katriel added the comment: Thank you Peter! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue44244] protected members accessible in other modules

2021-05-26 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue44244> ___ ___

[issue12463] Calling SocketServer.shutdown() when server_forever() was not called will hang

2021-05-27 Thread Irit Katriel
Irit Katriel added the comment: This was added to the documentation under issue39797. -- nosy: +iritkatriel resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue21633] Argparse does not propagate HelpFormatter class to subparsers

2021-05-27 Thread Irit Katriel
Irit Katriel added the comment: What Paul explained is also covered in the documentation here: https://docs.python.org/3/library/argparse.html#argparse.ArgumentParser.add_subparsers -- nosy: +iritkatriel resolution: -> not a bug stage: -> resolved status: open -&g

[issue31790] double free or corruption (while using smem)

2021-05-27 Thread Irit Katriel
Irit Katriel added the comment: Terry, this is a 2.7 memory management issue with not a log to go by. Would you agree that there is no chance we can do anything about this? -- nosy: +iritkatriel status: open -> pending ___ Python tracker <

[issue26503] argparse with required field , not having new line separator in -help dispaly

2021-05-27 Thread Irit Katriel
Irit Katriel added the comment: issue11874 has been fixed and its PR has a unit test that seems similar to the case reported here (test_help_with_metavar). If you are still seeing this issue on 3.9 or higher, please create a new issue and include a code snippet that reproduces the problem

[issue32779] urljoining an empty query string doesn't clear query string

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: The relevant part in the RFC pseudo code is if defined(R.query) then T.query = R.query; else T.query = Base.query; endif; which is implemented in urljoin as: if not

[issue32779] urljoining an empty query string doesn't clear query string

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: Sorry, urlparse returns '' rather than None when there is no query. So we indeed need to check something like if '?' not in url: or what's in Paul's patch. However, my main point was to question whether fixing this is actua

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