[issue45829] Remove C stack use by specializing BINARY_SUBSCR, STORE_SUBSCR, LOAD_ATTR, and STORE_ATTR

2021-11-18 Thread Dennis Sweeney
Dennis Sweeney added the comment: This snippet occurs a couple of times in ceval.c (BINARY_SUBSCR_GETITEM and CALL_FUNCTION_PY_SIMPLE): new_frame->previous = frame; frame = cframe.current_frame = new_frame; new_frame->depth = frame->depth + 1; Maybe I'm

[issue45841] IDLE fails to save files in macOS 12.0.1 Monterey

2021-11-18 Thread Don Chamberlin
Change by Don Chamberlin : -- title: IDLE fails to save files in macO -> IDLE fails to save files in macOS 12.0.1 Monterey ___ Python tracker ___

[issue45841] IDLE fails to save files in macO

2021-11-18 Thread Don Chamberlin
New submission from Don Chamberlin : Running Python 3.10.0 on MacOS 12.0.1 (Monterey). Start IDLE app to get an IDLE shell. Click File->New File. Edit window appears. Type # This is a comment in the edit window, then click File->Save or command-S. Error popup appears: "The save file operation

[issue19072] classmethod doesn't honour descriptor protocol of wrapped callable

2021-11-18 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +27866 pull_request: https://github.com/python/cpython/pull/29634 ___ Python tracker ___

[issue45235] argparse does not preserve namespace with subparser defaults

2021-11-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: Paul, should this be closed or do you think there is still a namespace issue to be resolved? -- assignee: rhettinger -> ___ Python tracker

[issue34592] cdll.LoadLibrary allows None as an argument

2021-11-18 Thread Gregory P. Smith
Gregory P. Smith added the comment: We do need to document this in ctypes.rst. Quite a bit of code depends on ctypes.CDLL(None) and similar to get at symbols linked into the interpreter or already dlopened into the process these days. It works on Linux; I'm assuming it likely does on

[issue45840] Improve cross-references in the data model documentation

2021-11-18 Thread Alex Waygood
Change by Alex Waygood : -- keywords: +patch pull_requests: +27865 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29633 ___ Python tracker ___

[issue45840] Improve cross-references in the data model documentation

2021-11-18 Thread Alex Waygood
Change by Alex Waygood : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45840] Improve cross-references in the data model documentation

2021-11-18 Thread Alex Waygood
New submission from Alex Waygood : The documentation for the data model has a lot of cross-references to other parts of the data model. However, often these cross-references do not have proper hyperlinks online, as :meth:`__iter__` is used (for example), instead of :meth:`~object.__iter__`.

[issue45839] python3 executable is able to install pandas

2021-11-18 Thread Eric V. Smith
Eric V. Smith added the comment: Please provide information about the system you’re running on. Also, tell us how Python was installed. I assume the title should be “… is unable to install …”. -- nosy: +eric.smith ___ Python tracker

[issue10483] http.server - what is executable on Windows

2021-11-18 Thread STINNER Victor
STINNER Victor added the comment: > I got the impression that most core developers used Unix-variants for their > development, and likely most CGI users as well, and that Windows use of CGI > just wasn't a priority for anyone in the core team. Core devs are volunteers who are free to pick

[issue45839] python3 executable is able to install pandas

2021-11-18 Thread Muhammad Irfan Asghar
New submission from Muhammad Irfan Asghar : pip3.10 install pandas WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed

[issue45788] Doc sys.prefix lib & include directories on Windows and Mac

2021-11-18 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45788] Doc sys.prefix lib & include directories on Windows and Mac

2021-11-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 2a630e716e488ac420d308736568829f76e388a3 by Miss Islington (bot) in branch '3.10': [3.10] bpo-45788: Link sys.prefix doc to 'Installation paths' (GH-29606) https://github.com/python/cpython/commit/2a630e716e488ac420d308736568829f76e388a3

[issue45788] Doc sys.prefix lib & include directories on Windows and Mac

2021-11-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset c06c7c489a82b2db023bb947f0c4d21ad93b8308 by Miss Islington (bot) in branch '3.9': [3.9] bpo-45788: Link sys.prefix doc to 'Installation paths' (GH-29606) (GH-29632)

[issue10483] http.server - what is executable on Windows

2021-11-18 Thread Glenn Linderman
Glenn Linderman added the comment: On 11/18/2021 7:36 AM, STINNER Victor wrote: > STINNER Victor added the comment: > > I searched for open issues which contain "cgi" in their title. I found 43 > open issues. The oldest is 101 months ago. > > In 10 years, Lib/cgi.py got 43 commits. Only 13

[issue10483] http.server - what is executable on Windows

2021-11-18 Thread Ethan Furman
Change by Ethan Furman : -- versions: +Python 3.11 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45788] Doc sys.prefix lib & include directories on Windows and Mac

2021-11-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +27864 pull_request: https://github.com/python/cpython/pull/29632 ___ Python tracker ___

[issue45788] Doc sys.prefix lib & include directories on Windows and Mac

2021-11-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 4575c01b750cd26377e803247c38d65dad15e26a by Terry Jan Reedy in branch 'main': bpo-45788: Link sys.prefix doc to 'Installation paths' (#29606) https://github.com/python/cpython/commit/4575c01b750cd26377e803247c38d65dad15e26a --

[issue45788] Doc sys.prefix lib & include directories on Windows and Mac

2021-11-18 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +27863 pull_request: https://github.com/python/cpython/pull/29631 ___ Python tracker

[issue45837] Fix turtle deprecations

2021-11-18 Thread Hugo van Kemenade
Change by Hugo van Kemenade : -- pull_requests: +27862 pull_request: https://github.com/python/cpython/pull/29630 ___ Python tracker ___

[issue45837] Fix turtle deprecations

2021-11-18 Thread Hugo van Kemenade
Change by Hugo van Kemenade : -- pull_requests: +27861 pull_request: https://github.com/python/cpython/pull/29629 ___ Python tracker ___

[issue45838] Incorrect line numbers in GDB Python backtraces [3.9]

2021-11-18 Thread Sam Gross
Change by Sam Gross : -- keywords: +patch pull_requests: +27860 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29628 ___ Python tracker ___

[issue45711] Simplify the interpreter's (type, val, tb) exception representation

2021-11-18 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +27859 pull_request: https://github.com/python/cpython/pull/29627 ___ Python tracker ___

[issue40059] Provide a toml module in the standard library

2021-11-18 Thread Brett Cannon
Brett Cannon added the comment: > Hopefully tomli being less than a year old should not be a blocker, after > all, TOML v1.0.0 is itself less than a year old. It's actually rather important as the semantics of how things work will effectively be locked in once a module is added to the

[issue45834] Move runtime except: check to the parser

2021-11-18 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +27858 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29625 ___ Python tracker

[issue45838] Incorrect line numbers in GDB Python backtraces [3.9]

2021-11-18 Thread Sam Gross
New submission from Sam Gross : Starting in Python 3.6 the line numbers table contains a *signed* byte indicating line delta. The calculation in Tools/gdb/libpython.py was not updated to handle signed bytes leading to incorrect line numbers when running "py-bt" (or printing frames) in GDB.

[issue45640] Production tokens are not clickable

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: We won't be backporting this to 3.9 due to `make suspicious` being faulty on this version. More details on GH-29623. So this is fixed on 3.10 and 3.11. Thanks, Arthur! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open ->

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

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 591bf416090fb00795eed51f6863e3c5d9036c89 by Miss Islington (bot) in branch '3.9': [3.9] [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`` in the data model (GH-29389) (GH-29619)

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

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset fde9f61e70bc38850783c81bf7c80c764ba6d9fa by Miss Islington (bot) in branch '3.10': [3.10] [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`` in the data model (GH-29389) (GH-29620)

[issue45795] urllib http client vulnerable to DOS attack

2021-11-18 Thread Muhammad Farhan
Muhammad Farhan added the comment: Maximum time in seconds that you allow the whole operation to take. This is useful for preventing your batch jobs from hanging for hours due to slow networks or links going down. Since 7.32.0, this option accepts decimal values, but the actual timeout will

[issue10483] http.server - what is executable on Windows

2021-11-18 Thread mike mcleod
mike mcleod added the comment: Hi Victor, Ok I'll do that. Regards, Mike On Thu, 18 Nov 2021 at 15:36, STINNER Victor wrote: > > STINNER Victor added the comment: > > I searched for open issues which contain "cgi" in their title. I found 43 > open issues. The oldest is 101 months ago. >

[issue45640] Production tokens are not clickable

2021-11-18 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +27857 pull_request: https://github.com/python/cpython/pull/29623 ___ Python tracker ___

[issue45640] Production tokens are not clickable

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 252d83cbf1bf0a6ac22a1347e760cd3e551bb834 by Miss Islington (bot) in branch '3.10': bpo-45640: [docs] Tokens are now clickable (GH-29260) (GH-29621) https://github.com/python/cpython/commit/252d83cbf1bf0a6ac22a1347e760cd3e551bb834 --

[issue45835] Race condition in test_queue can lead to test failures

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Sam! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue44959] EXT_SUFFIX is missing '.sl' on HP-UX

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 6d66de97f814fb504296c153957d87e49993f8ec by Miss Islington (bot) in branch '3.10': bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-27857) (GH-29152)

[issue45736] 2to3 does not support integer division fixing

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: We don't accept new features for 3.10 anymore, and since 2to3 is deprecated, we won't be updating it with new fixers and so on. It is pending removal in Python 3.13. Sorry, I understand this is a bummer but this part of Python hasn't seen serious development

[issue45835] Race condition in test_queue can lead to test failures

2021-11-18 Thread miss-islington
miss-islington added the comment: New changeset 9450c751cc2053b1c2e03ec92ed822a41223b142 by Miss Islington (bot) in branch '3.9': bpo-45835: Fix race condition in test_queue (GH-29601) https://github.com/python/cpython/commit/9450c751cc2053b1c2e03ec92ed822a41223b142 --

[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0df5d31ac7b32d3b948952c834783cd357fa3e22 by Miss Islington (bot) in branch '3.10': bpo-45701: Improve documentation for *typed* parameter (GH-29498) (GH-29509) https://github.com/python/cpython/commit/0df5d31ac7b32d3b948952c834783cd357fa3e22

[issue45836] unittest.TestCase.assertWarns raises RuntimeEror if sys.modules changes size (Python 3.9)

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Dennis! ✨  ✨ -- nosy: +lukasz.langa resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29620] unittest.TestCase.assertWarns raises RuntimeEror if sys.modules changes size

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 71d842b9c1e9d86ede449783e630b7a768b579d6 by Miss Islington (bot) in branch '3.9': bpo-29620: iterate over a copy of sys.modules (GH-4800) (GH-29605) https://github.com/python/cpython/commit/71d842b9c1e9d86ede449783e630b7a768b579d6 --

[issue45795] urllib http client vulnerable to DOS attack

2021-11-18 Thread Christian Heimes
Christian Heimes added the comment: Please don't post screenshots. Screenshots are neither accessible nor searchable. It's better to link to documentation and copy the relevant sentences here. -- nosy: +christian.heimes ___ Python tracker

[issue45640] Production tokens are not clickable

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 32959108f9c543e3cb9f2b68bbc782bddded6f42 by Arthur Milchior in branch 'main': bpo-45640: [docs] Tokens are now clickable (GH-29260) https://github.com/python/cpython/commit/32959108f9c543e3cb9f2b68bbc782bddded6f42 -- nosy: +lukasz.langa

[issue45640] Production tokens are not clickable

2021-11-18 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +27856 pull_request: https://github.com/python/cpython/pull/29621 ___ Python tracker

[issue45835] Race condition in test_queue can lead to test failures

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 5cf05c71d13a4b4a94cc77da4214ee2f0b9c7de7 by Miss Islington (bot) in branch '3.10': bpo-45835: Fix race condition in test_queue (GH-29601) (GH-29612) https://github.com/python/cpython/commit/5cf05c71d13a4b4a94cc77da4214ee2f0b9c7de7 --

[issue45775] Implementation of colorsys.rgb_to_yuv and vice versa

2021-11-18 Thread STINNER Victor
STINNER Victor added the comment: The GIMP image editor uses https://gegl.org/babl/ which supports tons of formats and supports color spaces, ICC profiles, etc. I would also prefer to keep colorsys simple and so not support ICC profiles for example. YUV is a common color encoding system.

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

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 31b3a70edb1216bdc8fab3b2eafd8ddb00487f41 by Alex Waygood in branch 'main': [doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`` in the data model (GH-29389)

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

2021-11-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +27855 pull_request: https://github.com/python/cpython/pull/29620 ___ Python tracker ___

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

2021-11-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +27854 pull_request: https://github.com/python/cpython/pull/29619 ___ Python tracker ___

[issue10483] http.server - what is executable on Windows

2021-11-18 Thread STINNER Victor
STINNER Victor added the comment: I searched for open issues which contain "cgi" in their title. I found 43 open issues. The oldest is 101 months ago. In 10 years, Lib/cgi.py got 43 commits. Only 13 commits in the last 5 years (since 2016-01-01). It seems like the cgi module is not really

[issue45775] Implementation of colorsys.rgb_to_yuv and vice versa

2021-11-18 Thread Petr Viktorin
Petr Viktorin added the comment: I argued for keeping colorsys: RGB/HLS/HSV are useful in several fields. Colorsys is a nice low-power battery to have around for e.g. picking a color for highlighting any kind of output. YIQ is the odd one out: it describes actual color, rather than

[issue10483] http.server - what is executable on Windows

2021-11-18 Thread STINNER Victor
STINNER Victor added the comment: > I have put the question on Discuss and wait for (any) responses, Link to the discussion: https://discuss.python.org/t/issue-10483-http-server-what-is-executable-on-windows/11856 -- nosy: +vstinner ___ Python

[issue45837] Fix turtle deprecations

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset c94664c262bddbff4604795d46ecd0935402df8e by Hugo van Kemenade in branch 'main': bpo-45837: Properly deprecate turtle.RawTurtle.settiltangle (GH-29618) https://github.com/python/cpython/commit/c94664c262bddbff4604795d46ecd0935402df8e --

[issue45795] urllib http client vulnerable to DOS attack

2021-11-18 Thread Muhammad Farhan
Muhammad Farhan added the comment: So, the idea is to make timeout for the whole operation and it should not reset in any case. -- ___ Python tracker ___

[issue45837] Fix turtle deprecations

2021-11-18 Thread Hugo van Kemenade
Change by Hugo van Kemenade : -- keywords: +patch pull_requests: +27853 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29618 ___ Python tracker

[issue45837] Fix turtle deprecations

2021-11-18 Thread Hugo van Kemenade
New submission from Hugo van Kemenade : turtle's settiltangle was deprecated in Python 3.1: "Deprecated since version 3.1." https://docs.python.org/3.10/library/turtle.html#turtle.settiltangle says of settiltangle: And the reason: "`Turtle.tiltangle()` has been enhanced in functionality:

[issue45573] Use pkg-config autoconf macros to detect flags for Modules/Setup

2021-11-18 Thread Christian Heimes
Christian Heimes added the comment: New changeset e4bb22fabbea72776b377733047e0f32e0388059 by Christian Heimes in branch 'main': bpo-45573: Add Modules/Setup.stdlib with conditional modules (GH-29615) https://github.com/python/cpython/commit/e4bb22fabbea72776b377733047e0f32e0388059

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

2021-11-18 Thread STINNER Victor
STINNER Victor added the comment: > Thanks, Victor! ✨  ✨ I'm curious to know if the traceback became a little more readable than msg406480 with this minor enhancement ;-) -- ___ Python tracker

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

2021-11-18 Thread STINNER Victor
STINNER Victor added the comment: Do you think that it would be worth it to dump the memory allocation when a Fatal Python error related to a memory error is triggered? -- ___ Python tracker

[issue45573] Use pkg-config autoconf macros to detect flags for Modules/Setup

2021-11-18 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27852 pull_request: https://github.com/python/cpython/pull/29616 ___ Python tracker ___

[issue45795] urllib http client vulnerable to DOS attack

2021-11-18 Thread Muhammad Farhan
Muhammad Farhan added the comment: See the max_time.png and curl.png -- Added file: https://bugs.python.org/file50449/curl.png ___ Python tracker ___

[issue45795] urllib http client vulnerable to DOS attack

2021-11-18 Thread Muhammad Farhan
Muhammad Farhan added the comment: Yes, other clients like curl does not reset the timeout See the attached screenshots for references. -- Added file: https://bugs.python.org/file50448/max_time.png ___ Python tracker

[issue45573] Use pkg-config autoconf macros to detect flags for Modules/Setup

2021-11-18 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27851 pull_request: https://github.com/python/cpython/pull/29615 ___ Python tracker ___

[issue45829] Remove C stack use by specializing BINARY_SUBSCR, STORE_SUBSCR, LOAD_ATTR, and STORE_ATTR

2021-11-18 Thread Mark Shannon
Mark Shannon added the comment: New changeset 21fa7a3e8f99a1a32467f85c877e40cbdafa9da7 by Mark Shannon in branch 'main': bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (GH-29592) https://github.com/python/cpython/commit/21fa7a3e8f99a1a32467f85c877e40cbdafa9da7

[issue45512] [sqlite3] simplify "isolation level"

2021-11-18 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Thanks for reviews and improvements, Dong-hee :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue45834] Move runtime except: check to the parser

2021-11-18 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Fantastic point, Irit! Will try to make s prototype this week -- ___ Python tracker ___

[issue45573] Use pkg-config autoconf macros to detect flags for Modules/Setup

2021-11-18 Thread Christian Heimes
Christian Heimes added the comment: New changeset 5275e59c0c1b26226608e6c7c2548c26192d6575 by Christian Heimes in branch 'main': bpo-45573: check for ossaudiodev in configure (GH-29614) https://github.com/python/cpython/commit/5275e59c0c1b26226608e6c7c2548c26192d6575 --

[issue45832] Misleading membersip expression documentation

2021-11-18 Thread Harald Husum
Harald Husum added the comment: I am realising that me not knowing about the hash invariance is likely a symptom of something I have in common with most Python users, but not with Python maintainers: Having access to a powerful ecosystem, we mostly get our classes from 3rd parties, rather

[issue1778410] removeTest() method patch for unittest.TestSuite

2021-11-18 Thread Irit Katriel
Irit Katriel added the comment: I agree with Michael that it’s better not to include the test in the first place. This issue was abandoned 8 years ago, closing now. -- nosy: +iritkatriel resolution: -> rejected stage: -> resolved status: open -> closed

[issue45510] Specialize BINARY_SUBTRACT

2021-11-18 Thread Dong-hee Na
Dong-hee Na added the comment: Thank you Mark! -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45510] Specialize BINARY_SUBTRACT

2021-11-18 Thread Mark Shannon
Mark Shannon added the comment: New changeset 345ba3f080c140dee3102f472bc166c2db191bcc by Dong-hee Na in branch 'main': bpo-45510: Specialize BINARY_SUBTRACT (GH-29523) https://github.com/python/cpython/commit/345ba3f080c140dee3102f472bc166c2db191bcc -- nosy: +Mark.Shannon

[issue45512] [sqlite3] simplify "isolation level"

2021-11-18 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 0920b61a0cb30128287ebafab1df8cad3a3dffdb by Erlend Egeberg Aasland in branch 'main': bpo-45512: Use Argument Clinic to set sqlite3 isolation level (GH-29593) https://github.com/python/cpython/commit/0920b61a0cb30128287ebafab1df8cad3a3dffdb

[issue45573] Use pkg-config autoconf macros to detect flags for Modules/Setup

2021-11-18 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27850 pull_request: https://github.com/python/cpython/pull/29614 ___ Python tracker ___

[issue45835] Race condition in test_queue can lead to test failures

2021-11-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset df3e53d86b2ad67da9ac2b5a3f56257d1f394982 by Sam Gross in branch 'main': bpo-45835: Fix race condition in test_queue (#29601) https://github.com/python/cpython/commit/df3e53d86b2ad67da9ac2b5a3f56257d1f394982 -- nosy: +pitrou

[issue45835] Race condition in test_queue can lead to test failures

2021-11-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +27849 pull_request: https://github.com/python/cpython/pull/29613 ___ Python tracker ___

[issue45835] Race condition in test_queue can lead to test failures

2021-11-18 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +27848 pull_request: https://github.com/python/cpython/pull/29612 ___ Python tracker

[issue45573] Use pkg-config autoconf macros to detect flags for Modules/Setup

2021-11-18 Thread Christian Heimes
Christian Heimes added the comment: New changeset 25ecc040d007a55e4b5c30fa739054b52c1aacac by Christian Heimes in branch 'main': bpo-45573: Introduce extension module flags in Makefile (GH-29594) https://github.com/python/cpython/commit/25ecc040d007a55e4b5c30fa739054b52c1aacac --