summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
Commit message (Expand)AuthorAgeFilesLines
* bpo-45574: fix warning about `print_escape` being unused (GH-29172)Nikita Sobolev2021-10-221-0/+1
* bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)Dennis Sweeney2021-10-221-0/+1
* bpo-45571: use PY_CFLAGS_NODIST for shared Modules/Setup (GH-29161)Christian Heimes2021-10-221-0/+2
* bpo-45570: Simplify setup macros for pyexpat (GH-29159)Christian Heimes2021-10-221-0/+1
* bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)Christian Heimes2021-10-221-0/+2
* bpo-43592: Raise RLIMIT_NOFILE in test.libregrtest (GH-29127)Gregory P. Smith2021-10-221-0/+3
* bpo-43706: Use PEP 590 vectorcall to speed up enumerate() (GH-25154)Dong-hee Na2021-10-211-0/+2
* bpo-44547: Make Fractions objects instances of typing.SupportsInt (GH-27851)Mark Dickinson2021-10-211-0/+2
* bpo-45526: obmalloc radix use 64 addr bits (GH-29062)Neil Schemenauer2021-10-211-0/+3
* bpo-45557: Fix underscore_numbers in pprint.pprint(). (GH-29129)Eric V. Smith2021-10-211-0/+2
* bpo-45160: Ttk optionmenu only set variable once (GH-28291)E-Paine2021-10-211-0/+1
* bpo-45521: Fix a bug in the obmalloc radix tree code. (GH-29051)Neil Schemenauer2021-10-211-0/+3
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-0/+2
* bpo-44019: Add operator.call() to __all__ for the operator module (GH-29110)Kreus Amredes2021-10-211-0/+1
* bpo-45315: PyType_FromSpec: Copy spec->name and have the type own the memory ...Petr Viktorin2021-10-211-0/+3
* bpo-44220: Export PyStructSequence_UnnamedField in the limited API (GH-26331)Ken Jin2021-10-211-0/+1
* bpo-45548: add some missing entries to `Modules/Setup` (GH-29115)Brett Cannon2021-10-211-0/+1
* bpo-35673: Add a public alias for namespace package __loader__ attribute (#29...Barry Warsaw2021-10-201-0/+4
* bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as ...Kyungmin Lee2021-10-201-0/+5
* bpo-45320: Remove long-deprecated inspect methods (GH-28618)Hugo van Kemenade2021-10-201-0/+15
* bpo-41374: Remove obsolete exclusion of netinet/tcp.h on Cygwin (GH-21649)Zackery Spytz2021-10-201-0/+2
* bpo-45532: Replace 'default' with 'main' as default in sys.version (GH-29100)Jeong YunWon2021-10-201-0/+2
* bpo-45464: [doc] Explain that subclassing multiple exceptions is fragile (GH-...Łukasz Langa2021-10-201-0/+4
* bpo-45536: Check OpenSSL APIs in configure (GH-29088)Christian Heimes2021-10-201-0/+3
* bpo-44525: Specialize simple Python calls. (GH-29033)Mark Shannon2021-10-201-0/+1
* bpo-45474: Exclude all of marshal.h if Py_LIMITED_API is defined (GH-29061)Petr Viktorin2021-10-201-4/+5
* bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)Ken Jin2021-10-191-0/+10
* bpo-25625: add contextlib.chdir (GH-28271)Filipe Laíns2021-10-191-0/+3
* bpo-39679: Add tests for classmethod/staticmethod singledispatchmethods (GH-2...Alex Waygood2021-10-191-0/+2
* bpo-45494: Fix parser crash when reporting errors involving invalid continuat...Pablo Galindo Salgado2021-10-191-0/+2
* bpo-42174: fallback to sane values if the columns or lines are 0 in get_termi...Filipe Laíns2021-10-191-0/+2
* bpo-45449: add note about PEP 585 in collections.abc's documentation (GH-29047)Filipe Laíns2021-10-191-0/+1
* Add zoneinfo to the datetime documentation (GH-29038)Paul Ganssle2021-10-191-0/+3
* bpo-43851: Build SQLite with SQLITE_OMIT_AUTOINIT on Windows (GH-25414)Erlend Egeberg Aasland2021-10-191-0/+1
* bpo-45434: Only exclude <stdlib.h> in Python 3.11 limited C API (GH-29027)Victor Stinner2021-10-192-10/+4
* bpo-45475: Revert `__iter__` optimization for GzipFile, BZ2File, and LZMAFile...Inada Naoki2021-10-191-0/+4
* bpo-35134: Split warnings.h and weakrefobject.h (GH-29042)Victor Stinner2021-10-181-0/+3
* bpo-45516: add protocol description to the Traversable documentation (#29039)Filipe Laíns2021-10-181-0/+2
* bpo-45221: Fix handling of LDFLAGS and CPPFLAGS options in setup.py (GH-29031)andrei kulakov2021-10-181-0/+3
* Fix contributor person name in rst files (GH-29005)Benjamin Szőke2021-10-171-1/+1
* bpo-45495: Add 'case' and 'match' to IDLE completions list. (GH-29000)Terry Jan Reedy2021-10-161-0/+1
* bpo-45020: Default to using frozen modules unless running from source tree. (...Eric Snow2021-10-161-1/+1
* bpo-45249: Fix caret location when end_offset is set to 0 (GH-28855)Pablo Galindo Salgado2021-10-161-0/+2
* bpo-42222: Remove deprecated support for non-integer values (GH-28983)Raymond Hettinger2021-10-161-0/+1
* bpo-45489: Update ForwardRef to support | operator. (GH-28991)Dong-hee Na2021-10-161-0/+2
* bpo-45440: Remove pymath.c fallbacks (GH-28977)Victor Stinner2021-10-151-1/+3
* bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)Victor Stinner2021-10-151-0/+4
* bpo-45434: Remove Include/eval.h header file (GH-28973)Victor Stinner2021-10-151-4/+7
* bpo-35081: Move interpreteridobject.h to Include/internal/ (GH-28969)Victor Stinner2021-10-151-0/+3
* bpo-45428: Fix reading filenames from stdin in py_compile (GH-28848)Graham Inggs2021-10-151-0/+1