[issue47121] math.isfinite() can raise exception when called on a number

2022-03-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Most (but not all) functions in the math module implicitly convert its arguments to float. Here we can get an OverflowError. Do we want to add a note to every function that does it? Or add a general note at the top of the file and add exclusion notes to

[issue47079] Integral.denominator shouldn't return an int

2022-03-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: How would it work for bool or IntEnum? -- nosy: +lemburg, mark.dickinson, stutzbach ___ Python tracker ___

[issue47079] Integral.denominator shouldn't return an int

2022-03-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: Raymond and Serhiy, you were the last two active devs to touch numbers.py. -- nosy: +rhettinger, serhiy.storchaka, terry.reedy ___ Python tracker

[issue32642] add support for path-like objects in sys.path

2022-03-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Are there any problems with converting a Path to string before adding it to sys.path? You do this one time, and any users of sys.path will not need to bother about conversion. It is better even for performance. Otherwise we will need to revise and update

[issue47072] Database corruption with the shelve module

2022-03-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.8 only gets security patches. If you can, please test with a newer version. -- nosy: +terry.reedy ___ Python tracker ___

[issue44090] Add class binding to unbound super objects for allowing autosuper with class methods

2022-03-25 Thread Guido van Rossum
Guido van Rossum added the comment: I’m sorry, my brain hurts when trying to understand my own code for super. Hopefully someone younger can look at this.-- --Guido (mobile) -- ___ Python tracker

[issue44090] Add class binding to unbound super objects for allowing autosuper with class methods

2022-03-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: Guido, what do you think about this proposal? Personally, I'm dubious about changing the meaning of the arguments between code paths. The callee has no way to distinguish which meaning was intended. And adding classmethod() support in

[issue47125] Explore hashlib use of the Windows Crypto API NG

2022-03-25 Thread Gregory P. Smith
New submission from Gregory P. Smith : https://docs.microsoft.com/en-us/windows/win32/seccng/creating-a-hash-with-cng See if these are worthwhile vs using OpenSSL for the hashlib algorithms it supports. OS APIs can in theory take better advantage of HW acceleration for performance. Verify

[issue47124] explore hashlib use of the Apple CryptoKit macOS

2022-03-25 Thread Gregory P. Smith
New submission from Gregory P. Smith : https://developer.apple.com/documentation/cryptokit/ in macOS 10.15+ This is a common place for platform specific hardware acceleration to be exposed to the user (especially on SoCs which often have non-standard hardware - Like Apples... which is

[issue46761] functools.update_wrapper breaks the signature of functools.partial objects

2022-03-25 Thread Graham Dumpleton
Graham Dumpleton added the comment: These days I have no idea who is active on Django. -- ___ Python tracker ___ ___

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-03-25 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -30201 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-03-25 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -30200 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue47105] [Doc] grp cites pwd.h instead of grp.h

2022-03-25 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.9 ___ Python tracker

[issue47105] [Doc] grp cites pwd.h instead of grp.h

2022-03-25 Thread Ned Deily
Ned Deily added the comment: New changeset b8b473e943c0d105c79a6ebe2199dec18d785966 by Miss Islington (bot) in branch '3.9': bpo-47105: Cite grp.h instead of pwd.h in grp docs (GH-32091) (GH-32121) https://github.com/python/cpython/commit/b8b473e943c0d105c79a6ebe2199dec18d785966 --

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-03-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +30201 pull_request: https://github.com/python/cpython/pull/32121 ___ Python tracker ___

[issue46761] functools.update_wrapper breaks the signature of functools.partial objects

2022-03-25 Thread Larry Hastings
Larry Hastings added the comment: Ooh, good one. I don't know anybody in the Django project to contact though. Anybody have any leads? -- ___ Python tracker ___

[issue47105] [Doc] grp cites pwd.h instead of grp.h

2022-03-25 Thread Ned Deily
Ned Deily added the comment: New changeset 48b3ae9e29545891bece874b4c0c0e394fe0f048 by Miss Islington (bot) in branch '3.10': bpo-47105: Cite grp.h instead of pwd.h in grp docs (GH-32091) (GH-32120) https://github.com/python/cpython/commit/48b3ae9e29545891bece874b4c0c0e394fe0f048

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-03-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +30200 pull_request: https://github.com/python/cpython/pull/32120 ___ Python tracker ___

[issue47105] [Doc] grp cites pwd.h instead of grp.h

2022-03-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +30199 pull_request: https://github.com/python/cpython/pull/32121 ___ Python tracker ___

[issue47105] [Doc] grp cites pwd.h instead of grp.h

2022-03-25 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +30198 pull_request: https://github.com/python/cpython/pull/32120 ___ Python tracker

[issue47105] [Doc] grp cites pwd.h instead of grp.h

2022-03-25 Thread Ned Deily
Ned Deily added the comment: New changeset ee912ad6f66bb8cf5a8a2b4a7ecd2752bf070864 by Alex Hedges in branch 'main': bpo-47105: Cite grp.h instead of pwd.h in grp docs (GH-32091) https://github.com/python/cpython/commit/ee912ad6f66bb8cf5a8a2b4a7ecd2752bf070864 -- nosy: +ned.deily

[issue46761] functools.update_wrapper breaks the signature of functools.partial objects

2022-03-25 Thread Graham Dumpleton
Graham Dumpleton added the comment: Another example in Django, albeit in a test harness. * https://github.com/django/django/blob/7119f40c9881666b6f9b5cf7df09ee1d21cc8344/tests/urlpatterns_reverse/views.py#L65 -- ___ Python tracker

[issue46761] functools.update_wrapper breaks the signature of functools.partial objects

2022-03-25 Thread Graham Dumpleton
Graham Dumpleton added the comment: It is Django I would worry about and look at closely as they do stuff with decorators on instance methods that uses partials. https://github.com/django/django/blob/7119f40c9881666b6f9b5cf7df09ee1d21cc8344/django/utils/decorators.py#L43 ``` def

[issue46761] functools.update_wrapper breaks the signature of functools.partial objects

2022-03-25 Thread Larry Hastings
Larry Hastings added the comment: I heard back from both Samuel Colvin (Pydantic) and Sebastián Ramírez (FastAPI). They said neither of them use update_wrapper with partial objects. They also took a peek in a bunch of other projects (FastAPI, Typer, SQLModel, Asyncer, SQLAlchemy, Trio, and

[issue43224] Add support for PEP 646

2022-03-25 Thread Jelle Zijlstra
Jelle Zijlstra added the comment: > 1. Finish writing docs (is updating library/typing.html sufficient? > https://github.com/python/cpython/pull/32103) We also need to add to the What's New for 3.11. I volunteered to do that for all the typing PEPs. > 2. Implement support for pickling of

[issue47062] Implement asyncio.Runner context manager

2022-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset bad6ffaa64eecd33f4320ca31b1201b25cd8fc91 by Andrew Svetlov in branch 'main': bpo-47062: Rename factory argument to loop_factory (GH-32113) https://github.com/python/cpython/commit/bad6ffaa64eecd33f4320ca31b1201b25cd8fc91 --

[issue43224] Add support for PEP 646

2022-03-25 Thread Matthew Rahtz
Matthew Rahtz added the comment: Since things are piling up, here's a quick record of what I think the remaining tasks are: (in approximate order of priority) 1. Finish writing docs (is updating library/typing.html sufficient? https://github.com/python/cpython/pull/32103) 2. Implement

[issue43224] Add support for PEP 646

2022-03-25 Thread Matthew Rahtz
Change by Matthew Rahtz : -- pull_requests: +30197 pull_request: https://github.com/python/cpython/pull/32119 ___ Python tracker ___

[issue43352] Add a Barrier object in asyncio lib

2022-03-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker

[issue43352] Add a Barrier object in asyncio lib

2022-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset d03acd7270d66ddb8e987f9743405147ecc15087 by Duprat in branch 'main': bpo-43352: Add a Barrier object in asyncio lib (GH-24903) https://github.com/python/cpython/commit/d03acd7270d66ddb8e987f9743405147ecc15087 --

[issue47121] math.isfinite() can raise exception when called on a number

2022-03-25 Thread Thomas Fischbacher
Thomas Fischbacher added the comment: The problem with PEP-484 is that if one wants to use static type analysis, neither of these options are good: - Use static annotations on functions, and additionally spec out expectations in docstrings. Do note that the two types places where "float"

[issue47115] Documentation inconsistency with the stable ABI

2022-03-25 Thread Ned Deily
Change by Ned Deily : -- nosy: +petr.viktorin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-03-25 Thread Ned Deily
Ned Deily added the comment: This really should be handled in a new issue since the original fixes for all affected releases are already in the field. Moreover, we should be a bit careful about bumping the required Sphinx version for older releases as this has caused problems for downstream

[issue47062] Implement asyncio.Runner context manager

2022-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: I believe the error is fixed by #47118 -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue32642] add support for path-like objects in sys.path

2022-03-25 Thread Noam Cohen
Change by Noam Cohen : -- nosy: +ncohen nosy_count: 8.0 -> 9.0 pull_requests: +30196 pull_request: https://github.com/python/cpython/pull/32118 ___ Python tracker ___

[issue47123] ZipFile.writestr should respect SOURCE_DATE_EPOCH

2022-03-25 Thread ghost43
New submission from ghost43 : Currently `ZipFile.writestr` writes the local time into the ZipFile. (depends on both current time and local timezone) See https://github.com/python/cpython/blob/20e6e5636a06fe5e1472062918d0a302d82a71c3/Lib/zipfile.py#L1816-L1817 This makes pip installing a

[issue47122] Fix the table of methods in the collections.abc documentation

2022-03-25 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: docs@python -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list

[issue11339] annotation for class being defined

2022-03-25 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue11339] annotation for class being defined

2022-03-25 Thread Jelle Zijlstra
Jelle Zijlstra added the comment: Agree. typing.Self from PEP 673 fixes this specific case, and PEP 563 or 649 will provide a general solution. No need to keep this issue open. -- nosy: +JelleZijlstra status: pending -> open ___ Python tracker

[issue47122] Fix the table of methods in the collections.abc documentation

2022-03-25 Thread Géry
New submission from Géry : This pull request makes the following changes to the table of methods in the [`collections.abc` documentation](https://docs.python.org/3/library/collections.abc.html): - `Reversible`: add `__iter__` abstract method; - `Generator`: replace `__iter__` with inherited

[issue47118] test_run_keeps_context in test_asyncio fails

2022-03-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue47118] test_run_keeps_context in test_asyncio fails

2022-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 20e6e5636a06fe5e1472062918d0a302d82a71c3 by Andrew Svetlov in branch 'main': bpo-47118: Fix asyncio.Runner tests error (32117) https://github.com/python/cpython/commit/20e6e5636a06fe5e1472062918d0a302d82a71c3 --

[issue47121] math.isfinite() can raise exception when called on a number

2022-03-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: The math.isfinite() docs could be changed to something like, "coerces x to a float if possible and then returns True if x is neither an infinity nor a NaN, and False otherwise." Or there could be a general note about which functions (most of them)

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-03-25 Thread Maciej Olko
Change by Maciej Olko : -- pull_requests: +30194 pull_request: https://github.com/python/cpython/pull/32111 ___ Python tracker ___

[issue1207613] Idle Editor: Bottom Scroll Bar

2022-03-25 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 6.0 -> 7.0 pull_requests: +30193 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/32116 ___ Python tracker

[issue47121] math.isfinite() can raise exception when called on a number

2022-03-25 Thread Nathaniel Manista
Change by Nathaniel Manista : -- nosy: +Nathaniel Manista ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue47121] math.isfinite() can raise exception when called on a number

2022-03-25 Thread Thomas Fischbacher
New submission from Thomas Fischbacher : >>> help(math.isfinite) isfinite(x, /) Return True if x is neither an infinity nor a NaN, and False otherwise. So, one would expect the following expression to return `True` or `False`. We instead observe: >>> math.isfinite(10**1000) Traceback

[issue47118] test_run_keeps_context in test_asyncio fails

2022-03-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +30192 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32117 ___ Python tracker ___

[issue46566] Support -3.11-arm64 in py.exe launcher

2022-03-25 Thread Steve Dower
Steve Dower added the comment: I think this PR is "ready enough" to get in for broader testing, but in case anyone wants to try it first, I've attached a build from my own machine. You may need Programs & Features to remove any existing "Python Launcher" before installing this MSI, and you

[issue47053] Reduce de-optimization in BINARY_OP_INPLACE_ADD_UNICODE

2022-03-25 Thread Mark Shannon
Mark Shannon added the comment: New changeset cca43b7d64f47ea921d0f7a347ae1a839c5463c3 by Dennis Sweeney in branch 'main': bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318) https://github.com/python/cpython/commit/cca43b7d64f47ea921d0f7a347ae1a839c5463c3

[issue47118] test_run_keeps_context in test_asyncio fails

2022-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks for the report! I read it ad 'decimal context tests modifies the environment'. I'll update asyncio runner test to ignore external contextvars. -- ___ Python tracker

[issue47117] repl segfaults on non utf-8 input

2022-03-25 Thread Jon Åslund
Jon Åslund added the comment: very similar back trace too (gdb) run Starting program: /home/jon/.pyenv/versions/3.10.4/bin/python3.10 [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". Python 3.10.4 (main, Mar 24 2022,

[issue47120] Make all jump opcodes relative

2022-03-25 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch pull_requests: +30191 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32115 ___ Python tracker ___

[issue47117] repl segfaults on non utf-8 input

2022-03-25 Thread Jon Åslund
Jon Åslund added the comment: Yes. I think they are the same. I can reproduce the emoji crash. This is much easier to reproduce. No need to have a Swedish keyboard layout. 1. Copy _ 2. Start python with a non unicode locale. LC_ALL=C python3.10 3. Paste in _ 4. Press backspace once. It will

[issue47117] repl segfaults on non utf-8 input

2022-03-25 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This looks similar to https://bugs.python.org/issue46206 -- nosy: +pablogsal, xtreak ___ Python tracker ___

[issue47120] Make all jump opcodes relative

2022-03-25 Thread Irit Katriel
Change by Irit Katriel : -- title: Make all jumps relative -> Make all jump opcodes relative ___ Python tracker ___ ___

[issue47120] Make all jumps relative

2022-03-25 Thread Irit Katriel
New submission from Irit Katriel : For some of our jump opcodes target is absolute, so it can easily require EXTENDED_ARGS. Our analysis [1] shows that turning all absolute jumps into relative jumps will eliminate almost all EXTENDED_ARGS on jumps. This will require a _BACK version for each

[issue47093] Documentation Fix: Remove .bat when activating venv on windows

2022-03-25 Thread J Y
J Y added the comment: Do you think it's worth changing it to just activate and adding a footnote mentioning the variations as I've been a dev for a few years now and it stumped me for a minute as I work in a few different envs. Mainly thinking of making setting up venv's as easy as

[issue47119] test_freeze_simple_script in test_tools fails

2022-03-25 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -X frozen_modules=off -m test -vuall test_tools -m test_freeze_simple_script ... == ERROR: test_freeze_simple_script (test.test_tools.test_freeze.TestFreeze)

[issue47118] test_run_keeps_context in test_asyncio fails

2022-03-25 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -vuall test_asyncio ... == FAIL: test_run_keeps_context (test.test_asyncio.test_runners.RunnerTests)

[issue16958] The sqlite3 context manager does not work with isolation_level=None

2022-03-25 Thread Kodiologist
Kodiologist added the comment: This bit me real bad. On Python 3.8, I wrote a program with `isolation_level = None` and `with db: …` and spent a long time figuring out why writes were so slow. Turns out that `with db` doesn't actually start a transaction in this case, as the documentation

[issue40421] [C API] Add public getter functions for the internal PyFrameObject structure

2022-03-25 Thread Mark Shannon
Change by Mark Shannon : -- pull_requests: +30190 pull_request: https://github.com/python/cpython/pull/32114 ___ Python tracker ___

[issue42197] Disable automatic update of frame locals during tracing

2022-03-25 Thread Mark Shannon
Mark Shannon added the comment: New changeset d7163bb35d1ed46bde9affcd4eb267dfd0b703dd by Mark Shannon in branch 'main': bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH-32055) https://github.com/python/cpython/commit/d7163bb35d1ed46bde9affcd4eb267dfd0b703dd

[issue44036] asyncio SSL server can be DOSed, event loop gets blocked: busy loops and uses 100% CPU

2022-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Could you check Python 3.11? It has a new asyncio SSL implementation rewritten from scratch. -- ___ Python tracker ___

[issue47062] Implement asyncio.Runner context manager

2022-03-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +30189 pull_request: https://github.com/python/cpython/pull/32113 ___ Python tracker ___

[issue1554] socketmodule cleanups: allow the use of keywords in socket functions

2022-03-25 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue13197] subprocess: move shell arguments to a separate keyword param

2022-03-25 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Popen should raise ValueError if pass a string when shell=False or a list when shell=True ___ Python tracker

[issue47075] test_multiprocessing_spawn leaks QueueManager dangling processes

2022-03-25 Thread STINNER Victor
STINNER Victor added the comment: > BaseManager._finalize_manager() timeout should be configurable I proposed GH-32112 for that. -- ___ Python tracker ___

[issue18535] termios.tcgetattr should return namedtuple

2022-03-25 Thread Irit Katriel
Irit Katriel added the comment: The patch has no tests, the use case is not clear and it's been 9 years. Closing. -- nosy: +iritkatriel stage: -> resolved status: open -> closed ___ Python tracker

[issue47075] test_multiprocessing_spawn leaks QueueManager dangling processes

2022-03-25 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +30188 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32112 ___ Python tracker ___

[issue8891] shutil: sort files before archiving for consistency

2022-03-25 Thread Irit Katriel
Irit Katriel added the comment: distutils is deprecated now, so there won't be any more enhancements to it. -- nosy: +iritkatriel resolution: -> wont fix stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue8891] shutil: sort files before archiving for consistency

2022-03-25 Thread Irit Katriel
Change by Irit Katriel : -- components: +Distutils -Library (Lib) nosy: +dstufft ___ Python tracker ___ ___ Python-bugs-list mailing

[issue42917] Block stack size for frame objects should be dynamically sizable

2022-03-25 Thread Mark Shannon
Mark Shannon added the comment: With the introduction of zero cost exceptions, there is no block stack. -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue47117] repl segfaults on non utf-8 input

2022-03-25 Thread Jon Åslund
New submission from Jon Åslund : Some bytes that are non utf-8 segfaults python repl in 3.10 and later on linux. Example: $ python3.10 Python 3.10.4 (main, Mar 24 2022, 14:20:44) [GCC 9.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> � Segmentation

[issue47116] Use _PyLong_FromUnsignedChar in bytearrayobject.c

2022-03-25 Thread Pieter Eendebak
Change by Pieter Eendebak : -- keywords: +patch pull_requests: +30187 stage: -> patch review pull_request: https://github.com/python/cpython/pull/32110 ___ Python tracker ___

[issue47116] Use _PyLong_FromUnsignedChar in bytearrayobject.c

2022-03-25 Thread Pieter Eendebak
New submission from Pieter Eendebak : In https://github.com/python/cpython/pull/31867 the method _PyLong_FromUnsignedChar was introduced for faster conversion of byteaarray elements. We can use the method in more places -- components: Interpreter Core messages: 415991 nosy:

[issue45618] Documentation builds fail with Sphinx 3.2.1

2022-03-25 Thread Maciej Olko
Change by Maciej Olko : -- pull_requests: +30186 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/32109 ___ Python tracker ___

[issue47062] Implement asyncio.Runner context manager

2022-03-25 Thread Kumar Aditya
Kumar Aditya added the comment: With this change, Github Actions fails first time and it passes in the second rerun of running asyncio tests. See https://github.com/python/cpython/runs/5682275663?check_suite_focus=true and main branch. -- nosy: +kumaraditya303

[issue47115] Documentation inconsistency with the stable ABI

2022-03-25 Thread Jeremiah Gabriel Pascual
New submission from Jeremiah Gabriel Pascual : In https://docs.python.org/3/c-api/typeobj.html#static-types, it says that PyTypeObject isn't part of the stable ABI. Yet, in https://docs.python.org/3/c-api/type.html#c.PyTypeObject, it says that PyTypeObject IS part of the stable ABI. Which is

[issue46429] Merge all deepfrozen files into one

2022-03-25 Thread Kumar Aditya
Change by Kumar Aditya : -- resolution: fixed -> status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue46429] Merge all deepfrozen files into one

2022-03-25 Thread Kumar Aditya
Change by Kumar Aditya : -- pull_requests: +30185 pull_request: https://github.com/python/cpython/pull/32107 ___ Python tracker ___