[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset c523022ba8f81a3661b4ac8be81706ed095d5769 by Łukasz Langa in branch '3.10': [3.10] bpo-43914: What's New 3.10: add new SyntaxError attributes (GH-28558) (GH-28562) https://github.com/python/cpython/commit/c523022ba8f81a3661b4ac8be81706ed095d5769

[issue45166] get_type_hints + Final + future annotations = TypeError

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

[issue45166] get_type_hints + Final + future annotations = TypeError

2021-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1f08d16c90b6619607fe0656328062ab986cce29 by Łukasz Langa in branch '3.9': [3.9] bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279) (GH-28561) https://github.com/python/cpython/commit/1f08d16c90b6619607fe0656328062ab986cce29

[issue45166] get_type_hints + Final + future annotations = TypeError

2021-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset d312b8516e11027ce97897d39764e242f0f57087 by Miss Islington (bot) in branch '3.10': bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279) (GH-28560) https://github.com/python/cpython/commit/d312b8516e11027ce97897d39764e242f0f57087

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-25 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +26945 pull_request: https://github.com/python/cpython/pull/28562 ___ Python tracker <https://bugs.python.org/issue43

[issue43914] Highlight invalid ranges in SyntaxErrors

2021-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 71f8ff45c62bd6b792919ac7c3804a8628ae12cb by Terry Jan Reedy in branch 'main': bpo-43914: Whats New 310: add new SyntaxError attributes (GH-28558) https://github.com/python/cpython/commit/71f8ff45c62bd6b792919ac7c3804a8628ae12cb -- nosy

[issue45166] get_type_hints + Final + future annotations = TypeError

2021-09-25 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +26944 pull_request: https://github.com/python/cpython/pull/28561 ___ Python tracker <https://bugs.python.org/issue45

[issue45166] get_type_hints + Final + future annotations = TypeError

2021-09-25 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 784905dbeff68cf788bbeefe0a675af1af04affc by Nikita Sobolev in branch 'main': bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279) https://github.com/python/cpython/commit/784905dbeff68cf788bbeefe0a675af1af04affc -- nosy

[issue35921] Use ccache by default

2021-09-24 Thread Łukasz Langa
Łukasz Langa added the comment: It seems to me like the consensus is to not alter CPython's build files because ccache is supposed to be used through its `cc`/`gcc` compiler wrappers. Those can be provided to a ./configure run either by modifying PATH to include the directory

[issue45026] More compact range iterator

2021-09-24 Thread Łukasz Langa
Łukasz Langa added the comment: Serhiy, right: looks like the difference stems from recreating the range objects, not from iteration. But Dennis' observation still stands: using `for i in range(...):` is a very popular idiom. If that becomes slower than the status quo, we will be making

[issue30951] Documentation error in inspect module

2021-09-24 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Alex! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior versions: +Python 3.10, Python 3.11 -Python 3.8 ___ Python tracker <https://

[issue30951] Documentation error in inspect module

2021-09-24 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 402d5f3d77684c91ad02a2ab5223673bec5f1602 by Miss Islington (bot) in branch '3.10': bpo-30951: Correct co_names docstring in inspect module (GH-2743) (GH-28543) https://github.com/python/cpython/commit/402d5f3d77684c91ad02a2ab5223673bec5f1602

[issue30951] Documentation error in inspect module

2021-09-24 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 91a5ba1bcb24c87a82c1417b1e5df57c89cbd3e0 by Miss Islington (bot) in branch '3.9': bpo-30951: Correct co_names docstring in inspect module (GH-2743) (GH-28544) https://github.com/python/cpython/commit/91a5ba1bcb24c87a82c1417b1e5df57c89cbd3e0

[issue30951] Documentation error in inspect module

2021-09-24 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3f8b23f8ddab75d9b77a3997d54e663187e12cc8 by Alex Vig in branch 'main': bpo-30951: Correct co_names docstring in inspect module (GH-2743) https://github.com/python/cpython/commit/3f8b23f8ddab75d9b77a3997d54e663187e12cc8 -- nosy

[issue38623] Python documentation should mention how to find site-packages

2021-09-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset d672dd34f0bc3addeaf1789d4183e3a37ab110d5 by Miss Islington (bot) in branch '3.9': bpo-38623: Add note about site module (site-packages) (GH-16974) (GH-28537) https://github.com/python/cpython/commit/d672dd34f0bc3addeaf1789d4183e3a37ab110d5

[issue38623] Python documentation should mention how to find site-packages

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

[issue38623] Python documentation should mention how to find site-packages

2021-09-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 87f97fe5e6434da51246d70af9e2cd7d63c29fba by Miss Islington (bot) in branch '3.10': bpo-38623: Add note about site module (site-packages) (GH-16974) (GH-28536) https://github.com/python/cpython/commit/87f97fe5e6434da51246d70af9e2cd7d63c29fba

[issue45026] More compact range iterator

2021-09-23 Thread Łukasz Langa
Łukasz Langa added the comment: Good point benchmarking small iterations too, Dennis. I missed that. Agreed then, GH-27986 looks like a winner. -- ___ Python tracker <https://bugs.python.org/issue45

[issue38623] Python documentation should mention how to find site-packages

2021-09-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 55b45bf707c6c8084db259fe2f8aa08e84ea0d99 by Peter Bittner in branch 'main': bpo-38623: Add note about site module (site-packages) (GH-16974) https://github.com/python/cpython/commit/55b45bf707c6c8084db259fe2f8aa08e84ea0d99 -- nosy

[issue39359] zipfile: add missing "pwd: expected bytes, got str" exception message

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

[issue39359] zipfile: add missing "pwd: expected bytes, got str" exception message

2021-09-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 91099e25446b214725f8e2bec6f90553260c by Daniel Hillier in branch 'main': bpo-39359: [zipfile] add missing "pwd: expected bytes, got str" exception (GH-18031) https://github.com/python/cpython/commit/91099e25446b214725f8e2bec6

[issue38415] @asynccontextmanager decorated functions are not callable like @contextmanager

2021-09-23 Thread Łukasz Langa
Łukasz Langa added the comment: Look, not even 23 months to land this thing! Thanks, Jason! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 -Python 3.7, Python 3.8, Python 3.9 _

[issue38415] @asynccontextmanager decorated functions are not callable like @contextmanager

2021-09-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 86b833badd3d6864868404ead2f8c7994d24f85c by Jason Fried in branch 'main': bpo-38415: Allow using @asynccontextmanager-made ctx managers as decorators (GH-16667) https://github.com/python/cpython/commit/86b833badd3d6864868404ead2f8c7994d24f85c

[issue43760] The DISPATCH() macro is not as efficient as it could be (move PyThreadState.use_tracing)

2021-09-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 55576893b31452ba739e01189424cd62cf11ed20 by Miss Islington (bot) in branch '3.10': bpo-43760: Document PyThreadState.use_tracing removal (GH-28527) (GH-28529) https://github.com/python/cpython/commit/55576893b31452ba739e01189424cd62cf11ed20

[issue45238] Fix debug() in IsolatedAsyncioTestCase

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

[issue45238] Fix debug() in IsolatedAsyncioTestCase

2021-09-22 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e06b0fddf69b933fe82f60d78a0f6248ca36a0a3 by Łukasz Langa in branch '3.9': [3.9] bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449) (GH-28522) https://github.com/python/cpython/commit/e06b0fddf69b933fe82f60d78a0f6248ca36a0a3

[issue45238] Fix debug() in IsolatedAsyncioTestCase

2021-09-22 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 44396aaba9b92b3a38a4b422a000d1a8eb05185a by Łukasz Langa in branch '3.10': [3.10] bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449) (GH-28521) https://github.com/python/cpython/commit/44396aaba9b92b3a38a4b422a000d1a8eb05185a

[issue45238] Fix debug() in IsolatedAsyncioTestCase

2021-09-22 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +26913 pull_request: https://github.com/python/cpython/pull/28522 ___ Python tracker <https://bugs.python.org/issue45

[issue45026] More compact range iterator

2021-09-22 Thread Łukasz Langa
Łukasz Langa added the comment: Since len timings for ranges of 100 items are negligible anyway, I personally still favor GH-28176 which is clearly faster during iteration. -- ___ Python tracker <https://bugs.python.org/issue45

[issue45238] Fix debug() in IsolatedAsyncioTestCase

2021-09-22 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +26912 pull_request: https://github.com/python/cpython/pull/28521 ___ Python tracker <https://bugs.python.org/issue45

[issue45238] Fix debug() in IsolatedAsyncioTestCase

2021-09-22 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset ecb6922ff2d56476a6cfb0941ae55aca5e7fae3d by Serhiy Storchaka in branch 'main': bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449) https://github.com/python/cpython/commit/ecb6922ff2d56476a6cfb0941ae55aca5e7fae3d -- nosy

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 09390c837a0bf73e213db2fbde34d756fa77a837 by Miss Islington (bot) in branch '3.9': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) (GH-28507) https://github.com/python/cpython/commit

[issue43219] shutil.copy raises IsADirectoryError when the directory does not actually exist

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 09390c837a0bf73e213db2fbde34d756fa77a837 by Miss Islington (bot) in branch '3.9': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) (GH-28507) https://github.com/python/cpython/commit

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: Pablo, this regression was fixed in GH-28508 which should go into 3.10.0. -- nosy: +pablogsal priority: normal -> release blocker ___ Python tracker <https://bugs.python.org/issu

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 41d48bc038b254cc4a78a2d840097196b9545a84 by Miss Islington (bot) in branch '3.10': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) (GH-28508) https://github.com/python/cpython/commit

[issue43219] shutil.copy raises IsADirectoryError when the directory does not actually exist

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 41d48bc038b254cc4a78a2d840097196b9545a84 by Miss Islington (bot) in branch '3.10': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) (GH-28508) https://github.com/python/cpython/commit

[issue44807] typing.Protocol silently overrides __init__ method of delivered class

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: Marking issue as "pending" until we figure out how PEP 544 should be amended. -- status: open -> pending ___ Python tracker <https://bugs.pytho

[issue45216] Remove redundant information from difflib docstrings

2021-09-21 Thread Łukasz Langa
Change by Łukasz Langa : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.9 ___ Python tracker <https://bugs.python.or

[issue45216] Remove redundant information from difflib docstrings

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset df1006b561f9dca5a15af98d54f0337a75b69445 by Miss Islington (bot) in branch '3.9': bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28506) https://github.com/python/cpython/commit/df1006b561f9dca5a15af98d54f0337a75b69445

[issue45216] Remove redundant information from difflib docstrings

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e6b6c1d23b3702052637f70551451d12695403a1 by Miss Islington (bot) in branch '3.10': bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28505) https://github.com/python/cpython/commit/e6b6c1d23b3702052637f70551451d12695403a1

[issue45234] copy_file raises FileNotFoundError when src is a directory

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset b7eac52b466f697d3e89f47508e0df0196a98970 by andrei kulakov in branch 'main': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) https://github.com/python/cpython/commit

[issue43219] shutil.copy raises IsADirectoryError when the directory does not actually exist

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset b7eac52b466f697d3e89f47508e0df0196a98970 by andrei kulakov in branch 'main': bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) https://github.com/python/cpython/commit

[issue45215] Add docs for Mock name and parent args and deprecation warning when wrong args are passed

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: Have you encountered misuse of Mock's `name` and `parent` in the wild? As you're saying, since `str()` and `repr()` will error out anyway, it's unlikely users were doing this in the first place. I'm a little hesitant to accept the deprecation since

[issue45216] Remove redundant information from difflib docstrings

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 06e1773c8d8fe375423bb7fcf5922b49bc737b75 by Nikita Sobolev in branch 'main': bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) https://github.com/python/cpython/commit/06e1773c8d8fe375423bb7fcf5922b49bc737b75 -- nosy

[issue45246] the sorted() documentation should refer to operator

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0d41bf15702832540afc1b1c078bc4fde5baebd6 by Łukasz Langa in branch '3.10': [3.10] bpo-45246: Document that sorted() only uses "<" comparisons (GH-28494) (GH-28502) https://github.com/python/cpython/commit/0d41bf15702832540afc1b1c078

[issue44807] typing.Protocol silently overrides __init__ method of delivered class

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: Yurri, is the issue you reported your original finding? If you haven't found this issue in the wild, we might want to let this be as-is until we specify exactly whether `__init__()` should be considered part of a protocol

[issue45246] the sorted() documentation should refer to operator

2021-09-21 Thread Łukasz Langa
Change by Łukasz Langa : -- nosy: +lukasz.langa nosy_count: 5.0 -> 6.0 pull_requests: +26897 pull_request: https://github.com/python/cpython/pull/28502 ___ Python tracker <https://bugs.python.org/issu

[issue45209] multiprocessing tests log: UserWarning: resource_tracker: There appear to be 1 leaked shared_memory objects to clean up at shutdown

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f604cf1c377a7648e0686044e6e49900bfc9feef by Nikita Sobolev in branch 'main': bpo-45209: fix `UserWarning: resource_tracker` in test_multiprocessing (GH-28377) https://github.com/python/cpython/commit/f604cf1c377a7648e0686044e6e49900bfc9feef

[issue45026] More compact range iterator

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: Looks like GH-28176 is faster across the board. One missing benchmark here is comparing `len()` speed as this was where the results will be reversed. It would be interesting to see to what extent. -- ___ Python

[issue44807] typing.Protocol silently overrides __init__ method of delivered class

2021-09-21 Thread Łukasz Langa
Łukasz Langa added the comment: I'm not sure whether we should downright reject `__init__()` methods. Sadly, they aren't usable at the moment anyway, but they could. Hear me out. There seems to be a gap in the PEP 544 definition of protocols, i.e. whether `__init__` should be definable

[issue45229] Always use unittest for collecting tests in regrtests

2021-09-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 04dea46dde25d58f242171181805f0e71a042963 by Miss Islington (bot) in branch '3.9': bpo-45229: Make pickle tests discoverable (GH-28467) (GH-28479) https://github.com/python/cpython/commit/04dea46dde25d58f242171181805f0e71a042963 -- nosy

[issue45229] Always use unittest for collecting tests in regrtests

2021-09-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 74c6acc76fa00f1b80e96c8d4608ba1487387949 by Miss Islington (bot) in branch '3.10': bpo-45229: Make pickle tests discoverable (GH-28467) (GH-28478) https://github.com/python/cpython/commit/74c6acc76fa00f1b80e96c8d4608ba1487387949 -- nosy

[issue40413] Py_RunMain() crashes on subsequence call

2021-09-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 29e431419a0c23340099a9cd8cf23ec9c7788879 by Miss Islington (bot) in branch '3.9': bpo-40413: test_embed tests calling Py_RunMain() multiple times (GH-28466) (GH-28471) https://github.com/python/cpython/commit

[issue45055] Fresh build on Windows fails the first time for zlib.c

2021-09-20 Thread Łukasz Langa
Łukasz Langa added the comment: Looks like we can lose this with fixes merged for 3.9 - 3.11. -- nosy: +lukasz.langa resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue1514420] Traceback display code can attempt to open a file named ""

2021-09-20 Thread Łukasz Langa
Łukasz Langa added the comment: Fixed for Python 3.11. Thanks! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/

[issue1514420] Traceback display code can attempt to open a file named ""

2021-09-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f71300cb0442f16ee9abc938e12537aec1eb5979 by Irit Katriel in branch 'main': bpo-1514420: Do not attempt to open files with names in <>s when formatting an exception (GH-28143) https://github.com/python/cpython/

[issue40497] subprocess.check_output() accept the check keyword argument

2021-09-20 Thread Łukasz Langa
Łukasz Langa added the comment: Fixed with GH-19897 for Python 3.11. Thanks! ✨  ✨ -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.11 -Python 3.7, Python 3.8, Python 3.9 ___ Python tracke

[issue40497] subprocess.check_output() accept the check keyword argument

2021-09-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 4d2957c1b9a915f76da418e89bf9b5add141ca3e by Rémi Lapeyre in branch 'main': bpo-40497: Fix handling of check in subprocess.check_output() (GH-19897) https://github.com/python/cpython/commit/4d2957c1b9a915f76da418e89bf9b5add141ca3e -- nosy

[issue44640] Fix punctuation in isinstance() error message

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f4813388b4506b2fafb0089848c5b11cd503758c by wyz23x2 in branch 'main': bpo-44640: Improve punctuation consistency in isinstance/issubclass error messages (GH-27144) https://github.com/python/cpython/commit/f4813388b4506b2fafb0089848c5b11cd503758c

[issue42038] Tracemalloc's format() doc contradictory

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

[issue42038] Tracemalloc's format() doc contradictory

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 6302701179c458da637d669d7e88734fabb79cf6 by Miss Islington (bot) in branch '3.9': bpo-42038: fix description of returned list of lines (GH-27529) (GH-28429) https://github.com/python/cpython/commit/6302701179c458da637d669d7e88734fabb79cf6

[issue42038] Tracemalloc's format() doc contradictory

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset bba2332303c60d7326f08aa639ff03a6b5d44d04 by Miss Islington (bot) in branch '3.10': bpo-42038: fix description of returned list of lines (GH-27529) (GH-28428) https://github.com/python/cpython/commit/bba2332303c60d7326f08aa639ff03a6b5d44d04

[issue42038] Tracemalloc's format() doc contradictory

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset aca0e08c5dcc11a8011697331931cde0b21270f2 by andrei kulakov in branch 'main': bpo-42038: fix description of returned list of lines (GH-27529) https://github.com/python/cpython/commit/aca0e08c5dcc11a8011697331931cde0b21270f2 -- nosy

[issue45217] ConfigParser does not accept "No value" reversely to the doc

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

[issue45217] ConfigParser does not accept "No value" reversely to the doc

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset a10726d3141d8f52a108c4daf70eefa29401e2fc by Miss Islington (bot) in branch '3.10': bpo-45217: adds note that `allow_no_value` in `configparser` is optional (GH-28396) (GH-28418) https://github.com/python/cpython/commit

[issue45217] ConfigParser does not accept "No value" reversely to the doc

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 3ea1c4b66887e7ca920db487f6ffc5f1db3c873f by Miss Islington (bot) in branch '3.9': bpo-45217: adds note that `allow_no_value` in `configparser` is optional (GH-28396) (GH-28416) https://github.com/python/cpython/commit

[issue45217] ConfigParser does not accept "No value" reversely to the doc

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset cb07838ab756564988b1ffd23871f1222a832446 by Nikita Sobolev in branch 'main': bpo-45217: adds note that `allow_no_value` in `configparser` is optional (GH-28396) https://github.com/python/cpython/commit/cb07838ab756564988b1ffd23871f1222a832446

[issue45187] Some tests in test_socket are not run

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

[issue45187] Some tests in test_socket are not run

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0361335b80b435ca3694981b41f8269e390eb892 by Serhiy Storchaka in branch 'main': bpo-45187: Collect test_socket tests using unittest (GH-28317) https://github.com/python/cpython/commit/0361335b80b435ca3694981b41f8269e390eb892 -- nosy

[issue45212] Dangling threads in skipped tests in test_socket

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: Haha, which you just did. Cool. -- ___ Python tracker <https://bugs.python.org/issue45212> ___ ___ Python-bugs-list mailin

[issue45212] Dangling threads in skipped tests in test_socket

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: We can add a comment to the effect that "the wait here needs to be longer than the client-side (0.01s)". Since you already merged the change to `main`, it will be easiest to merge the backports as well and add the comment in a follow

[issue45217] ConfigParser does not accept "No value" reversely to the doc

2021-09-17 Thread Łukasz Langa
Łukasz Langa added the comment: No, it shouldn't be the default. It never was before (this is a library that we've maintained for 20+ years now) and changing it now would mean that existing applications would stop validating their configuration in the way they did up to now. .ini files

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

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for the patch, Hubert Badocha! ✨  ✨ -- 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-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset a75a2577259a55d816de24a4cca16aad74e02aa5 by Hubert Badocha in branch 'main': bpo-39710: Remove Python 2-specific sentence from calendar documentation (GH-26985) https://github.com/python/cpython/commit/a75a2577259a55d816de24a4cca16aad74e02aa5

[issue45167] deepcopy of GenericAlias with __deepcopy__ method is broken

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

[issue45205] test_compileall logs "Compiling ..." messages

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 9443ce4eedbcaffb3262e7ede1dd100678e85506 by Miss Islington (bot) in branch '3.9': bpo-45205: Make test_compileall quiet (GH-28356) (GH-28364) https://github.com/python/cpython/commit/9443ce4eedbcaffb3262e7ede1dd100678e85506

[issue45205] test_compileall logs "Compiling ..." messages

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 17000b5a80e6ec071ea5007dcc6792e9daaaf0f2 by Miss Islington (bot) in branch '3.10': bpo-45205: Make test_compileall quiet (GH-28356) (GH-28370) https://github.com/python/cpython/commit/17000b5a80e6ec071ea5007dcc6792e9daaaf0f2

[issue45167] deepcopy of GenericAlias with __deepcopy__ method is broken

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 2746045a37e0d56ffdd8bb79f961bd7df0d1afba by Miss Islington (bot) in branch '3.9': bpo-45167: Fix deepcopying of GenericAlias (GH-28324) (GH-28368) https://github.com/python/cpython/commit/2746045a37e0d56ffdd8bb79f961bd7df0d1afba

[issue45167] deepcopy of GenericAlias with __deepcopy__ method is broken

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset de4c9c0bdc9b62e68dacd0c4bac20d7f4c527511 by Miss Islington (bot) in branch '3.10': bpo-45167: Fix deepcopying of GenericAlias (GH-28324) (GH-28367) https://github.com/python/cpython/commit/de4c9c0bdc9b62e68dacd0c4bac20d7f4c527511

[issue45205] test_compileall logs "Compiling ..." messages

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

[issue45089] [sqlite3] the trace callback does not raise exceptions on error

2021-09-15 Thread Łukasz Langa
Change by Łukasz Langa : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue45089> ___ ___ Pyth

[issue45207] test_gdb logs "Function ... not defined" messages

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

[issue45207] test_gdb logs "Function ... not defined" messages

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1c70efcbb57ab4eb65ca604b39606fceff6db4f5 by Miss Islington (bot) in branch '3.9': bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355) (GH-28366) https://github.com/python/cpython/commit/1c70efcbb57ab4eb65ca604b39606fceff6db4f5

[issue45207] test_gdb logs "Function ... not defined" messages

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset bbaf5c27e659cf372c34a6fe7ca31a2f5cb20a50 by Miss Islington (bot) in branch '3.10': bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355) (GH-28365) https://github.com/python/cpython/commit/bbaf5c27e659cf372c34a6fe7ca31a2f5cb20a50

[issue45089] [sqlite3] the trace callback does not raise exceptions on error

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Erlend! ✨  ✨ -- ___ Python tracker <https://bugs.python.org/issue45089> ___ ___ Python-bugs-list mailing list Unsub

[issue45089] [sqlite3] the trace callback does not raise exceptions on error

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 97802a8edb3f15aef9ecc1cac97c4c1b4ed3fdfc by Miss Islington (bot) in branch '3.9': bpo-45089: Improve sqlite3 trace callback docs (GH-28238) (GH-28372) https://github.com/python/cpython/commit/97802a8edb3f15aef9ecc1cac97c4c1b4ed3fdfc

[issue45089] [sqlite3] the trace callback does not raise exceptions on error

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 87f0ac8c1de83ac63447b9fe799dfb1657a5a9db by Miss Islington (bot) in branch '3.10': bpo-45089: Improve sqlite3 trace callback docs (GH-28238) (GH-28371) https://github.com/python/cpython/commit/87f0ac8c1de83ac63447b9fe799dfb1657a5a9db

[issue45208] test_pdb: test_checkline_is_not_executable() logs messages

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0e4f913da88791644150282e38ba21d1fca5fd91 by Miss Islington (bot) in branch '3.10': bpo-45208: Make test_pdb.test_checkline_is_not_executable() quiet (GH-28354) (GH-28363) https://github.com/python/cpython/commit

[issue45089] [sqlite3] the trace callback does not raise exceptions on error

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 51056b40e711d84692d099ac8970077b33c7fafd by Erlend Egeberg Aasland in branch 'main': bpo-45089: Improve sqlite3 trace callback docs (GH-28238) https://github.com/python/cpython/commit/51056b40e711d84692d099ac8970077b33c7fafd -- nosy

[issue34602] python3 resource.setrlimit strange behaviour under macOS

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 2563dd2d0a1cf793afca328ae9e195b72bd2b391 by Łukasz Langa in branch '3.10': [3.10] bpo-34602: Quadruple stack size on macOS when compiling with UBSAN (GH-27309) (GH-28280) https://github.com/python/cpython/commit

[issue5846] Deprecate obsolete functions in unittest

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset ff6d2cc55aac5cc53e331cae145d0cf35ec647b0 by Erlend Egeberg Aasland in branch 'main': bpo-5846: Deprecate obsolete methods in `unittest` (GH-28299) https://github.com/python/cpython/commit/ff6d2cc55aac5cc53e331cae145d0cf35ec647b0 -- nosy

[issue45167] deepcopy of GenericAlias with __deepcopy__ method is broken

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 5dce51a8875d9639786741e962b3cb208596b096 by Serhiy Storchaka in branch 'main': bpo-45167: Fix deepcopying of GenericAlias (GH-28324) https://github.com/python/cpython/commit/5dce51a8875d9639786741e962b3cb208596b096

[issue45207] test_gdb logs "Function ... not defined" messages

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 84a6061e29e9dc13909bdf6f541f48c2a4f1d410 by Victor Stinner in branch 'main': bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355) https://github.com/python/cpython/commit/84a6061e29e9dc13909bdf6f541f48c2a4f1d410 -- nosy

[issue45205] test_compileall logs "Compiling ..." messages

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset cc057ff5227b3a4ded637caa7ba51b67b06abaaa by Victor Stinner in branch 'main': bpo-45205: Make test_compileall quiet (GH-28356) https://github.com/python/cpython/commit/cc057ff5227b3a4ded637caa7ba51b67b06abaaa -- nosy: +lukasz.langa

[issue45208] test_pdb: test_checkline_is_not_executable() logs messages

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e08e491a6ceea8ca105612df10147418c4e105b8 by Victor Stinner in branch 'main': bpo-45208: Make test_pdb.test_checkline_is_not_executable() quiet (GH-28354) https://github.com/python/cpython/commit/e08e491a6ceea8ca105612df10147418c4e105b8

[issue45204] test_peg_generator: test_soft_keyword() logs many messages into stdout

2021-09-15 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 764e6823a7632c2091db93da04c15900350ad524 by Pablo Galindo Salgado in branch 'main': bpo-45204: Reduce verbosity of test_peg_generator (GH-28360) https://github.com/python/cpython/commit/764e6823a7632c2091db93da04c15900350ad524 -- nosy

[issue35474] mimetypes.guess_all_extensions potentially mutates list

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

[issue35474] mimetypes.guess_all_extensions potentially mutates list

2021-09-13 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 06c26f4d2909eae196ac81c9ed9b41e747e42685 by Miss Islington (bot) in branch '3.10': bpo-35474: Fix mimetypes.guess_all_extensions() potentially mutating list (GH-28286) (GH-28289) https://github.com/python/cpython/commit

[issue35474] mimetypes.guess_all_extensions potentially mutates list

2021-09-13 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 9cd8fb8d6356c17dafa1be727cab3d438f6df53f by Miss Islington (bot) in branch '3.9': bpo-35474: Fix mimetypes.guess_all_extensions() potentially mutating list (GH-28286) (GH-28290) https://github.com/python/cpython/commit

[issue45167] deepcopy of GenericAlias with __deepcopy__ method is broken

2021-09-13 Thread Łukasz Langa
Łukasz Langa added the comment: Serhiy, can you elaborate how GH-28306 can break protocols using other special methods? I can't come up with an example. -- nosy: +lukasz.langa ___ Python tracker <https://bugs.python.org/issue45

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