[issue45429] [Windows] time.sleep() should use CREATE_WAITABLE_TIMER_HIGH_RESOLUTION

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset fc4474e45eecbea8e88095f28c98c5d56438d841 by Dong-hee Na in branch 'main': bpo-45429: Merge whatsnew about time.sleep (GH-29589) https://github.com/python/cpython/commit/fc4474e45eecbea8e88095f28c98c5d56438d841 -- nosy: +lukasz.langa

[issue45820] Parser can segfault if an error happens before reading any input

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Pablo! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45820] Parser can segfault if an error happens before reading any input

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 00ee14e814d35587ac55f89c7de871a01360c876 by Miss Islington (bot) in branch '3.9': [3.9] bpo-45820: Fix a segfault when the parser fails without reading any input (GH-29580) (GH-29584) https://github.com/python/cpython/commit

[issue45822] Py_CompileString does not respect the coding cookie with the new parser if flags are empty

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0ef308a2890571c850c624fb99ac00f8951363c6 by Pablo Galindo Salgado in branch '3.9': bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are not provided (GH-29582) (GH-29585) https://github.com/python/cpython/commit

[issue45822] Py_CompileString does not respect the coding cookie with the new parser if flags are empty

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e3aa9fd77bf474bb3e8a7a1d1bd1ebf45147945a by Pablo Galindo Salgado in branch '3.10': [3.10] bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are not provided (GH-29582) (GH-29586) https://github.com/python/cpython/commit

[issue45826] unittest.assertRaisesRegex is broken in Python 3.11 and leading to crashing if tested regex does not match name.

2021-11-17 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27845 pull_request: https://github.com/python/cpython/pull/29602 ___ Python tracker <https://bugs.python.org/issue45

[issue45826] unittest.assertRaisesRegex is broken in Python 3.11 and leading to crashing if tested regex does not match name.

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 5d90c467c02ffefdb13c1abc83a171db1a99ffad by Dennis Sweeney in branch 'main': bpo-45826: Fix a crash in suggestions.c by checking for `traceback is None` (GH-29590) https://github.com/python/cpython/commit/5d90c467c02ffefdb13c1abc83a171db1a99ffad

[issue42540] Debug pymalloc crash when using os.fork() [regression]

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Sam! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue42540] Debug pymalloc crash when using os.fork() [regression]

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 87787c8774221c81602b31b0e0dc0678ad494e91 by Sam Gross in branch '3.9': [3.9] bpo-42540: reallocation of id_mutex should not force default allocator (GH-29564) (GH-29600) https://github.com/python/cpython/commit

[issue45831] _Py_DumpASCII() writes characters one by one leading to corrupted tracebacks

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Victor! ✨  ✨ -- ___ Python tracker <https://bugs.python.org/issue45831> ___ ___ Python-bugs-list mailing list Unsub

[issue45831] _Py_DumpASCII() writes characters one by one leading to corrupted tracebacks

2021-11-17 Thread Łukasz Langa
Change by Łukasz Langa : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45831] _Py_DumpASCII() writes characters one by one leading to corrupted tracebacks

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset ac89f8cab79800195687dd141de472f90c626ec3 by Miss Islington (bot) in branch '3.9': bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596) (GH-29597) https://github.com/python/cpython/commit

[issue45831] _Py_DumpASCII() writes characters one by one leading to corrupted tracebacks

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 4ffde90dccd741b04a448f2e44f0b82a41b6fe96 by Miss Islington (bot) in branch '3.10': bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596) (GH-29598) https://github.com/python/cpython/commit

[issue45831] _Py_DumpASCII() writes characters one by one leading to corrupted tracebacks

2021-11-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset b919d8105c4d77f00509b6d3ab2073f09db640de by Victor Stinner in branch 'main': bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596) https://github.com/python/cpython/commit/b919d8105c4d77f00509b6d3ab2073f09db640de

[issue45831] _Py_DumpASCII() writes characters one by one leading to corrupted tracebacks

2021-11-17 Thread Łukasz Langa
New submission from Łukasz Langa : This is also a performance issue but I'm mostly concerned about the stdout corruption aspect. When more than one thread aborts at the same time, output ends up looking like the example below on the terminal. Unless you understand the issue is output written

[issue45792] contextvars.Token has wrong module name in Sphinx's objects.inv

2021-11-16 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset c37a0d9c0ae4aa0d9135fac9a58afc7b34ff71d6 by Miss Islington (bot) in branch '3.8': bpo-45792: Fix contextvar.Token's intersphinx FQN (GH-29533) (GH-29537) https://github.com/python/cpython/commit/c37a0d9c0ae4aa0d9135fac9a58afc7b34ff71d6

[issue45235] argparse does not preserve namespace with subparser defaults

2021-11-10 Thread Łukasz Langa
Łukasz Langa added the comment: Go for it, Raymond. -- nosy: +lukasz.langa resolution: fixed -> stage: test needed -> needs patch ___ Python tracker <https://bugs.python.org/i

[issue45778] libpython.so 3.9.8 drops symbol used by third party extension module(s)

2021-11-10 Thread Łukasz Langa
Change by Łukasz Langa : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue45778> ___ ___

[issue45392] docstring of "type" could use an update

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Mark! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.11, Python 3.9 ___ Python tracker <https://bugs.python.or

[issue45392] docstring of "type" could use an update

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 045f205ba4710c4c633364a4e2e098483af936e5 by Miss Islington (bot) in branch '3.10': bpo-45392: Update the docstring of the 'type' built-in (GH-29439) (GH-29452) https://github.com/python/cpython/commit/045f205ba4710c4c633364a4e2e098483af936e5

[issue45392] docstring of "type" could use an update

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f5287ecd59d83a662490f89188a0fc2ef3718f8b by Miss Islington (bot) in branch '3.9': bpo-45392: Update the docstring of the 'type' built-in (GH-29439) (GH-29453) https://github.com/python/cpython/commit/f5287ecd59d83a662490f89188a0fc2ef3718f8b

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 376218e1c65c029c24e45ca408a14f681cf1aeae by Miss Islington (bot) in branch '3.9': bpo-27313: Use non-deprecated methods for tracing (GH-29425) (GH-29451) https://github.com/python/cpython/commit/376218e1c65c029c24e45ca408a14f681cf1aeae

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 8fdf6c64d3e0183c21f069d31d350a907ce42708 by Miss Islington (bot) in branch '3.10': bpo-27313: Use non-deprecated methods for tracing (GH-29425) (GH-29450) https://github.com/python/cpython/commit/8fdf6c64d3e0183c21f069d31d350a907ce42708

[issue45392] docstring of "type" could use an update

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 91275207296c39e495fe118019a757c4ddefede8 by Mark Dickinson in branch 'main': bpo-45392: Update the docstring of the 'type' built-in (GH-29439) https://github.com/python/cpython/commit/91275207296c39e495fe118019a757c4ddefede8

[issue45392] docstring of "type" could use an update

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: It's unclear what the original comment was about. BPO-20189 is somewhat cryptic to me too. `inspect.signature` never supported `type`, `round`, `int`, and so on. I checked 3.4.10 and 3.5.10 and in each case it looks like this: >>> inspect.signa

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset cc1cbcbb2d75cacc31ff3359d83043bc7bd5a89d by Serhiy Storchaka in branch 'main': bpo-27313: Use non-deprecated methods for tracing (GH-29425) https://github.com/python/cpython/commit/cc1cbcbb2d75cacc31ff3359d83043bc7bd5a89d

[issue45680] Documentation on `GenericAlias` objects and `__class_getitem__` could be improved

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 643f50ca5e9e12a4d8269ddc8baf2279d8608745 by Miss Islington (bot) in branch '3.9': [doc] bpo-45680: Improve glossary entry for generic types (GH-29388) (GH-29448) https://github.com/python/cpython/commit/643f50ca5e9e12a4d8269ddc8baf2279d8608745

[issue39452] Improve the __main__ module documentation

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e53cb9811f97ded5a20872fe0f3486bc7f8f1b6e by Miss Islington (bot) in branch '3.10': bpo-39452: [doc] Change "must" to "can" on relative import style in `__main__` (GH-29379) (GH-29449) https://github.com/p

[issue45680] Documentation on `GenericAlias` objects and `__class_getitem__` could be improved

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 494f8da741054e5bab33f23f3961400ea5778235 by Miss Islington (bot) in branch '3.10': [doc] bpo-45680: Improve glossary entry for generic types (GH-29388) (GH-29447) https://github.com/python/cpython/commit/494f8da741054e5bab33f23f3961400ea5778235

[issue39452] Improve the __main__ module documentation

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 57457a1e5caf714034a75fe4f382b8b669ce6ed8 by Andre Delfino in branch 'main': bpo-39452: [doc] Change "must" to "can" on relative import style in `__main__` (GH-29379) https://github.com/p

[issue45644] Make json.tool soak up input before opening output for writing

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Chris! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45644] Make json.tool soak up input before opening output for writing

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset a932631890d148444e5f9b09f4b57305475d6386 by Miss Islington (bot) in branch '3.9': bpo-45644: Make json.tool read infile before writing to outfile (GH-29273) (GH-29446) https://github.com/python/cpython/commit

[issue45644] Make json.tool soak up input before opening output for writing

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 6603f6b5bdf0ed164bad4eb432619da2e95fb518 by Miss Islington (bot) in branch '3.10': bpo-45644: Make json.tool read infile before writing to outfile (GH-29273) (GH-29445) https://github.com/python/cpython/commit

[issue45680] Documentation on `GenericAlias` objects and `__class_getitem__` could be improved

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 77a2c77c84d2ead2d19f96df862c119308e90071 by Alex Waygood in branch 'main': [doc] bpo-45680: Improve glossary entry for generic types (GH-29388) https://github.com/python/cpython/commit/77a2c77c84d2ead2d19f96df862c119308e90071

[issue45644] Make json.tool soak up input before opening output for writing

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 815dad42d53fc40a6dc057e067f4a8a885c3b858 by Chris Wesseling in branch 'main': bpo-45644: Make json.tool read infile before writing to outfile (GH-29273) https://github.com/python/cpython/commit/815dad42d53fc40a6dc057e067f4a8a885c3b858

[issue45644] Make json.tool soak up input before opening output for writing

2021-11-06 Thread Łukasz Langa
Łukasz Langa added the comment: This is arguably a bugfix since truncating the `infile` cannot be construed as a useful feature in any sense. Thus I'm inclined to backport this to 3.10.1 and 3.9.9 too. -- nosy: +lukasz.langa type: enhancement -> behavior versions: +Python 3

[issue45726] Documentation for `@singledispatch` and `@singledispatchmethod` could be improved

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Alex! ✨  ✨ I'm not a native speaker so your review of my language use was helpful 邏 -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracke

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Alex! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset bcb236c19e4ddf5ccf0fc45ab541eabf1f757a64 by Miss Islington (bot) in branch '3.10': bpo-45678: Add more ``singledispatchmethod`` tests (GH-29412) (GH-29424) https://github.com/python/cpython/commit/bcb236c19e4ddf5ccf0fc45ab541eabf1f757a64

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 32f55d1a5de66f9a86964fc0655d7a006a9d90b9 by Alex Waygood in branch 'main': bpo-45678: Add more ``singledispatchmethod`` tests (GH-29412) https://github.com/python/cpython/commit/32f55d1a5de66f9a86964fc0655d7a006a9d90b9

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 276a3a6a16ebf489607db31ad86c58dd89567306 by Miss Islington (bot) in branch '3.9': bpo-45160: Fix refleak in test_ttk_guionly introduced in GH-28291 (GH-29416) (GH-29420) https://github.com/python/cpython/commit

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 099a94fba3f9437e29d16ed54215ec8cf65de868 by Miss Islington (bot) in branch '3.10': bpo-45160: Fix refleak in test_ttk_guionly introduced in GH-28291 (GH-29416) (GH-29421) https://github.com/python/cpython/commit

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 885e57c148d0b2c34daa2b7e5162dc57cf7e4469 by Miss Islington (bot) in branch '3.9': bpo-27313: Fix ttk_guionly tests failing on Framework builds on macOS (GH-29411) (GH-29423) https://github.com/python/cpython/commit

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 363ecb36da273ddb0c80ad14f3f1aa5101223bc2 by Miss Islington (bot) in branch '3.10': bpo-27313: Fix ttk_guionly tests failing on Framework builds on macOS (GH-29411) (GH-29422) https://github.com/python/cpython/commit

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e52f9bee802aa7a7fbd405dcc43bc2d1bea884d9 by Łukasz Langa in branch 'main': bpo-27313: Fix ttk_guionly tests failing on Framework builds on macOS (GH-29411) https://github.com/python/cpython/commit/e52f9bee802aa7a7fbd405dcc43bc2d1bea884d9

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 54d1e3f72ed1ad8e860888c30ee7a285b931c0d1 by Łukasz Langa in branch 'main': bpo-45160: Fix refleak in test_ttk_guionly introduced in GH-28291 (GH-29416) https://github.com/python/cpython/commit/54d1e3f72ed1ad8e860888c30ee7a285b931c0d1

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-11-04 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27669 pull_request: https://github.com/python/cpython/pull/29416 ___ Python tracker <https://bugs.python.org/issue45

[issue44257] typo and verbous grammar in the grammar spec

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0e34a5918c74c3cc2284cd77a2eba4108b0d6fb0 by Pablo Galindo Salgado in branch '3.10': [3.10] bpo-44257: fix "assigment_expr" typo + regenerate the grammar, and remove unused imports (GH-29393) (GH-29395) https://github.com/python/cpyt

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Dennis! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f701237db2611140e578cebbdfef91ae4714af4e by Łukasz Langa in branch '3.9': [3.9] bpo-30570: Fix segfault on buildbots caused by stack overflow from recursion in tests (GH-29258) (GH-29415) https://github.com/python/cpython/commit

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2021-11-04 Thread Łukasz Langa
Change by Łukasz Langa : -- nosy: +lukasz.langa nosy_count: 3.0 -> 4.0 pull_requests: +27668 pull_request: https://github.com/python/cpython/pull/29411 ___ Python tracker <https://bugs.python.org/issu

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27667 pull_request: https://github.com/python/cpython/pull/29415 ___ Python tracker <https://bugs.python.org/issue30

[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 10b0c671580a2f8dd013b6345c1dc9789d5bd95c by Ned Deily in branch '3.8': bpo-44828: Avoid leaving a zombie Save panel (GH-29372) https://github.com/python/cpython/commit/10b0c671580a2f8dd013b6345c1dc9789d5bd95c

[issue30570] issubclass segfaults on objects with weird __getattr__

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1e29dce1138a39e095ba47ab4c1e445fd08716e2 by Miss Islington (bot) in branch '3.9': bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048) (GH-29178) https://github.com/python/cpython/commit/1e29dce1138a39e095ba47ab4c1e445fd08716e2

[issue45220] Windows builds sometimes fail on Azure and GitHub Action: fatal error RC1116: RC terminating after preprocessor errors

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset c0f3281d6ca5c59d4a11698364463d968b9ddd3c by Miss Islington (bot) in branch '3.10': bpo-45220: Remove invalid include from resource definition files on Windows (GH-29396) (GH-29406) https://github.com/python/cpython/commit

[issue45678] `functools.singledispatchmethod` is missing tests (and is buggy in 3.9)

2021-11-04 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset effb72fa0f6f8f8ec92687fc6a29d63bbdb7e98d by Alex Waygood in branch '3.9': [3.9] bpo-45678: Fix `singledispatchmethod` `classmethod`/`staticmethod` bug (GH-29394) https://github.com/python/cpython/commit/effb72fa0f6f8f8ec92687fc6a29d63bbdb7e98d

[issue45578] Missing tests for the dis module

2021-11-03 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 8198617bcce885c280ba5f8acd066c71b311b1ac by Łukasz Langa in branch '3.9': [3.9] bpo-45578: add tests for `dis.distb` (GH-29332) (#29386) https://github.com/python/cpython/commit/8198617bcce885c280ba5f8acd066c71b311b1ac

[issue45678] `functools.singledispatchmethod` is missing tests

2021-11-03 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f1918385cccf3ef51d339dfa1f3654005508f307 by Miss Islington (bot) in branch '3.10': bpo-45678: Add ``functools.singledispatchmethod`` tests (GH-29328) (GH-29390) https://github.com/python/cpython/commit/f1918385cccf3ef51d339dfa1f3654005508f307

[issue45678] `functools.singledispatchmethod` is missing tests

2021-11-03 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 5a14929a6e4fab672e2f83a86773618e973b22a6 by Alex Waygood in branch 'main': bpo-45678: Add ``functools.singledispatchmethod`` tests (GH-29328) https://github.com/python/cpython/commit/5a14929a6e4fab672e2f83a86773618e973b22a6

[issue45578] Missing tests for the dis module

2021-11-03 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset fd6b70d6b715c2403a194a2b3eae3210e2e81742 by Łukasz Langa in branch '3.10': [3.10] bpo-45578: add tests for `dis.distb` (GH-29332) (GH-29385) https://github.com/python/cpython/commit/fd6b70d6b715c2403a194a2b3eae3210e2e81742

[issue45578] Missing tests for the dis module

2021-11-03 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27644 pull_request: https://github.com/python/cpython/pull/29386 ___ Python tracker <https://bugs.python.org/issue45

[issue45578] Missing tests for the dis module

2021-11-03 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27643 pull_request: https://github.com/python/cpython/pull/29385 ___ Python tracker <https://bugs.python.org/issue45

[issue45578] Missing tests for the dis module

2021-11-03 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e346f196819aeb02a8a94205ce3e1536c4c2f105 by Nikita Sobolev in branch 'main': bpo-45578: add tests for `dis.distb` (GH-29332) https://github.com/python/cpython/commit/e346f196819aeb02a8a94205ce3e1536c4c2f105 -- nosy: +lukasz.langa

[issue45406] inspect.getouterframes() tracebacks when $CWD does not exists

2021-11-02 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset a459a81530de700b3d3faeb827b22ed1c9985812 by Irit Katriel in branch 'main': bpo-45406: make inspect.getmodule() return None when getabsfile() raises FileNotFoundError (GH-28824) https://github.com/python/cpython/commit

[issue45457] Documentation for ssl.load_default_certs is outdated

2021-11-02 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Lincoln! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue22449] SSLContext.load_verify_locations behavior on Windows and OSX

2021-11-02 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 4ab6e524abd2d7f21c2d7a6eaee5be1f93baf140 by Miss Islington (bot) in branch '3.9': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) (GH-29374) https://github.com/python/cpython/commit

[issue45457] Documentation for ssl.load_default_certs is outdated

2021-11-02 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 4ab6e524abd2d7f21c2d7a6eaee5be1f93baf140 by Miss Islington (bot) in branch '3.9': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) (GH-29374) https://github.com/python/cpython/commit

[issue45457] Documentation for ssl.load_default_certs is outdated

2021-11-02 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 71f602b54c9c5346d22a542e186746b06cccfc8e by Miss Islington (bot) in branch '3.10': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) (GH-29373) https://github.com/python/cpython/commit

[issue22449] SSLContext.load_verify_locations behavior on Windows and OSX

2021-11-02 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 71f602b54c9c5346d22a542e186746b06cccfc8e by Miss Islington (bot) in branch '3.10': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) (GH-29373) https://github.com/python/cpython/commit

[issue45457] Documentation for ssl.load_default_certs is outdated

2021-11-02 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3551bf16ee5c25b6349209dd30e032f0f3b9ace3 by LincolnPuzey in branch 'main': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) https://github.com/python/cpython/commit/3551bf16ee5c25b6349209dd30e032f0f3b9ace3

[issue22449] SSLContext.load_verify_locations behavior on Windows and OSX

2021-11-02 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3551bf16ee5c25b6349209dd30e032f0f3b9ace3 by LincolnPuzey in branch 'main': bpo-45457: Minor fix to documentation for SSLContext.load_default_certs. (GH-28947) https://github.com/python/cpython/commit/3551bf16ee5c25b6349209dd30e032f0f3b9ace3

[issue45581] [sqlite3] raise MemoryError if sqlite3_open_v2() returns SQLITE_NOMEM

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Erlend! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> crash ___ Python tracker <https://bugs.python

[issue45581] [sqlite3] raise MemoryError if sqlite3_open_v2() returns SQLITE_NOMEM

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset ed807bf333cdc78b92c9861600acf1a435c52193 by Łukasz Langa in branch '3.9': [3.9] bpo-45581: Raise `MemoryError` in `sqlite3.connect` if SQLite signals memory error (GH-29171) (GH-29324) https://github.com/python/cpython/commit

[issue45379] Improve errors related to frozen modules.

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset c2d0ba722a7b3839685af968cf0c304a24cdf525 by Filipe Laíns in branch 'main': bpo-45379: clarify FROZEN_EXCLUDED and FROZEN_INVALID documentation (GH-29189) https://github.com/python/cpython/commit/c2d0ba722a7b3839685af968cf0c304a24cdf525

[issue45581] [sqlite3] raise MemoryError if sqlite3_open_v2() returns SQLITE_NOMEM

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 7e2c0a18b41cb906a354776e6ca52af81e39820f by Łukasz Langa in branch '3.10': [3.10] bpo-45581: Raise `MemoryError` in `sqlite3.connect` if SQLite signals memory error (GH-29171) (GH-29323) https://github.com/python/cpython/commit

[issue45600] First sentence in docs for os.environ

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Andrei! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.9 ___ Python tracker <https://bugs.python.or

[issue45600] First sentence in docs for os.environ

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3ec1124de289496efabc43a02cc88b3c59e1e238 by Miss Islington (bot) in branch '3.9': bpo-45600: Enhanced / clarified the docs for os.environ and os.environb (GH-29204) (GH-29321) https://github.com/python/cpython/commit

[issue45600] First sentence in docs for os.environ

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0538351fcaa320e62cb4ef92ec629b7e24a73e9c by Miss Islington (bot) in branch '3.10': bpo-45600: Enhanced / clarified the docs for os.environ and os.environb (GH-29204) (GH-29322) https://github.com/python/cpython/commit

[issue45335] Default TIMESTAMP converter in sqlite3 ignores UTC offset

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: Based on the decision from Discourse, the current behavior has only been documented and the actual issue is "wontfix". Thanks for pursuing this, Ian! ✨  ✨ -- resolution: -> wont fix stage: patch review -> resolved status: open -&

[issue45335] Default TIMESTAMP converter in sqlite3 ignores UTC offset

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e1560313d4d9bff8eba0f851ef325f7ee19f7ba9 by Miss Islington (bot) in branch '3.9': bpo-45335: Add note to `sqlite3` docs about "timestamp" converter (GH-29200) (GH-29320) https://github.com/python/cpyt

[issue45335] Default TIMESTAMP converter in sqlite3 ignores UTC offset

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 8ea665c730cd86a321c558c012bef84f454efa4f by Miss Islington (bot) in branch '3.10': bpo-45335: Add note to `sqlite3` docs about "timestamp" converter (GH-29200) (GH-29319) https://github.com/python/cpyt

[issue45577] Make `test_zoneinfo.py` to check all pickle protocols

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Nikita! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45581] [sqlite3] raise MemoryError if sqlite3_open_v2() returns SQLITE_NOMEM

2021-10-29 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27594 pull_request: https://github.com/python/cpython/pull/29324 ___ Python tracker <https://bugs.python.org/issue45

[issue45581] [sqlite3] raise MemoryError if sqlite3_open_v2() returns SQLITE_NOMEM

2021-10-29 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27593 pull_request: https://github.com/python/cpython/pull/29323 ___ Python tracker <https://bugs.python.org/issue45

[issue45581] [sqlite3] raise MemoryError if sqlite3_open_v2() returns SQLITE_NOMEM

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e2e62b3808691e15fa44b883270023e42dcad958 by Erlend Egeberg Aasland in branch 'main': bpo-45581: Raise `MemoryError` in `sqlite3.connect` if SQLite signals memory error (GH-29171) https://github.com/python/cpython/commit

[issue45600] First sentence in docs for os.environ

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset b17cfd150f4dc2816975d304a71110a2d445eaf0 by andrei kulakov in branch 'main': bpo-45600: Enhanced / clarified the docs for os.environ and os.environb (GH-29204) https://github.com/python/cpython/commit/b17cfd150f4dc2816975d304a71110a2d445eaf0

[issue45335] Default TIMESTAMP converter in sqlite3 ignores UTC offset

2021-10-29 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3877fc02f7a8801ba5ce0e94b6075b3fdd9778d0 by Ian Fisher in branch 'main': bpo-45335: Add note to `sqlite3` docs about "timestamp" converter (GH-29200) https://github.com/python/cpython/commit/3877fc02f7a8801ba5ce0e94b6075b

[issue45577] Make `test_zoneinfo.py` to check all pickle protocols

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 7203ecd332eca3a44a3f1c8bdadd76a08c5568a1 by Miss Islington (bot) in branch '3.10': bpo-45577: test all pickle protocols in `test_zoneinfo` (GH-29167) (GH-29296) https://github.com/python/cpython/commit/7203ecd332eca3a44a3f1c8bdadd76a08c5568a1

[issue45577] Make `test_zoneinfo.py` to check all pickle protocols

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset dd674ca96f2150fb3f7b4086ef7ec0022c4e2058 by Miss Islington (bot) in branch '3.9': bpo-45577: test all pickle protocols in `test_zoneinfo` (GH-29167) (GH-29295) https://github.com/python/cpython/commit/dd674ca96f2150fb3f7b4086ef7ec0022c4e2058

[issue45655] List of PEPs at top of typing docs is too long to be readable

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 8813a987b1df78b5eaddb085e514dfa5af5c8634 by Alex Waygood in branch '3.9': [3.9] bpo-45655: Add "relevant PEPs" section to typing documentation (GH-29297) https://github.com/python/cpython/commit/8813a987b1df78b5eaddb085e514df

[issue45624] test_graphlib.py depends on iteration order of sets

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Carl Friedrich! ✨  ✨ -- components: +Tests resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.11, Python 3.9 ___ Python tracke

[issue45624] test_graphlib.py depends on iteration order of sets

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 67a1abb6aab3b3ce40eb3fdc0af73179ab436a3a by Miss Islington (bot) in branch '3.9': bpo-45624: make test_graphlib not depend on the iteration order of sets (GH-29233) (GH-29292) https://github.com/python/cpython/commit

[issue45624] test_graphlib.py depends on iteration order of sets

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset eccb753ae6e1459dc697d5408e1082fff4f6d8f7 by Miss Islington (bot) in branch '3.10': bpo-45624: make test_graphlib not depend on the iteration order of sets (GH-29233) (GH-29293) https://github.com/python/cpython/commit

[issue45612] [doc] add sqlite3 module docstring

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Erlend! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue45612] [doc] add sqlite3 module docstring

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset d6623c3ddb9a0e5ffed81253bd40f75c3c662f1a by Miss Islington (bot) in branch '3.9': bpo-45612: Add sqlite3 module docstring (GH-29224) (GH-29289) https://github.com/python/cpython/commit/d6623c3ddb9a0e5ffed81253bd40f75c3c662f1a

[issue45612] [doc] add sqlite3 module docstring

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 823b3e39ae12884d5aa3c98341a41b2d6f19d329 by Miss Islington (bot) in branch '3.10': bpo-45612: Add sqlite3 module docstring (GH-29224) (GH-29288) https://github.com/python/cpython/commit/823b3e39ae12884d5aa3c98341a41b2d6f19d329

[issue45577] Make `test_zoneinfo.py` to check all pickle protocols

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 66e6b3dcd3bbab06feeff2cbaf8aade7b6223d6c by Nikita Sobolev in branch 'main': bpo-45577: test all pickle protocols in `test_zoneinfo` (GH-29167) https://github.com/python/cpython/commit/66e6b3dcd3bbab06feeff2cbaf8aade7b6223d6c -- nosy

[issue45379] Improve errors related to frozen modules.

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 233841ab782953510ad308dc6173072a6cc6a1cd by Filipe Laíns in branch 'main': bpo-45379: add custom error string for FROZEN_DISABLED (GH-29190) https://github.com/python/cpython/commit/233841ab782953510ad308dc6173072a6cc6a1cd -- nosy

[issue45583] Documentation of int() in datamodel.rst is out of date

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Arthur! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.8 ___ Python tracker <https://bugs.python.or

[issue45583] Documentation of int() in datamodel.rst is out of date

2021-10-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3767e0d94351653a34ba6a6914e57c5c231012b0 by Miss Islington (bot) in branch '3.9': bpo-45583: Correct datamodel documentation of int() (GH-29182) (GH-29286) https://github.com/python/cpython/commit/3767e0d94351653a34ba6a6914e57c5c231012b0

<    1   2   3   4   5   6   7   8   9   10   >