summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-45034: Fix how upper limit is formatted for `struct.pack("H", ...)` (GH-2...Nikita Sobolev2021-09-074-6/+27
* Revert "bpo-45035: Make sysconfig posix_home depend on platlibdir (GH-28011)"...Pablo Galindo Salgado2021-09-072-5/+3
* bpo-44991: Normalise `sqlite3` callback naming (GH-28088)Erlend Egeberg Aasland2021-09-072-52/+59
* bpo-44964: Add a note explaining the new semantics of f_last_i in frame objec...Pablo Galindo Salgado2021-09-072-2/+9
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)Yury Selivanov2021-09-0710-22/+23
* bpo-45124: Remove the bdist_msi command (GH-28195)Hugo van Kemenade2021-09-0711-822/+18
* bpo-44963: Implement send() and throw() methods for anext_awaitable objects (...Pablo Galindo Salgado2021-09-073-22/+270
* bpo-45035: Make sysconfig posix_home depend on platlibdir (GH-28011)Tzu-ping Chung2021-09-072-3/+5
* Make sysconfig posix_user not depend on platlibdir (GH-27655)Tzu-ping Chung2021-09-072-1/+3
* Update idlelib/help.html to include idle.rst spelling fix (GH-28191)Terry Jan Reedy2021-09-071-13/+7
* bpo-34561: Switch to Munro & Wild "powersort" merge strategy. (#28108)Tim Peters2021-09-063-92/+178
* bpo-45052: Unskips a failing `test_shared_memory_basics` test (GH-28182)Nikita Sobolev2021-09-062-2/+7
* bpo-42238: [doc] remove unused, and deduplicate, suspicious ignore rules. (GH...Julien Palard2021-09-062-21/+11
* bpo-44848: Update macOS installer to use SQLite 3.36.0 (GH-27621)Erlend Egeberg Aasland2021-09-052-3/+4
* More useful OrderedDict LRU recipes (GH-28164)Raymond Hettinger2021-09-051-19/+76
* bpo-41031: Match C and Python code formatting of unprintable exceptions and e...Irit Katriel2021-09-056-14/+55
* Extract visitors from the grammar nodes and call makers in the peg generator ...Pablo Galindo Salgado2021-09-0513-415/+419
* bpo-45102: unittest: add tests for skipping and errors in cleanup (GH-28166)Serhiy Storchaka2021-09-051-0/+138
* bpo-44571: Add itertool recipe for a variant of takewhile() (GH-28167)Raymond Hettinger2021-09-052-1/+77
* Remove unused macros from Modules/_sqlite/microprotocols.h (GH-28171)Erlend Egeberg Aasland2021-09-051-6/+0
* bpo-45042: Now test classes decorated with `requires_hashdigest` are not skip...Nikita Sobolev2021-09-044-6/+22
* Add What's New for dataclass keyword-only parameters. (GH-28158)Eric V. Smith2021-09-041-1/+60
* bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)Serhiy Storchaka2021-09-043-18/+27
* bpo-45097: Add more tests for shutdown_asyncgens() (GH-28154)Serhiy Storchaka2021-09-041-0/+79
* Check that 'configure' is generated by GNU Autoconf 2.69 (GH-28152)Pablo Galindo Salgado2021-09-041-0/+2
* Handle different string hash algorithms correctly (#28147)Brandt Bucher2021-09-041-6/+9
* bpo-45075: distinguish between frame and FrameSummary in traceback mo… (GH-...Irit Katriel2021-09-034-39/+48
* bpo-45022: Update libffi to 3.4.2 in Windows build (GH-28146)Steve Dower2021-09-034-6/+7
* bpo-42255: Deprecate webbrowser.MacOSX from Python 3.11 (GH-27837)Dong-hee Na2021-09-034-2/+15
* bpo-43950: support positions for dis.Instructions created through dis.Bytecod...Batuhan Taskaya2021-09-032-1/+7
* bpo-45094: Add Py_NO_INLINE macro (GH-28140)Victor Stinner2021-09-038-66/+77
* bpo-34602: Quadruple stack size on macOS when compiling with UBSAN (GH-27309)Łukasz Langa2021-09-035-113/+146
* bpo-45083: Include the exception class qualname when formatting an exception ...Irit Katriel2021-09-035-35/+65
* bpo-45082: Cleanup ctypes.c_buffer alias (GH-28129)Victor Stinner2021-09-024-99/+7
* bpo-45081: Fix __init__ method generation when inheriting from Protocol (GH-2...Yurii Karabas2021-09-023-13/+47
* [doc] Reword sentinel object summary in dataclasses (GH-27792)Ville Korhonen2021-09-021-4/+3
* bpo-40360: [doc] Rephrase deprecation note about lib2to3 (GH-28122)Łukasz Langa2021-09-021-6/+9
* bpo-43613: Faster implementation of gzip.compress and gzip.decompress (GH-27941)Ruben Vorderman2021-09-028-87/+193
* [doc] Link to deprecation policy PEP from the DeprecationWarning documentatio...Łukasz Langa2021-09-021-0/+4
* bpo-45056: Remove trailing unused constants from co_consts (GH-28109)Inada Naoki2021-09-027-6323/+6361
* bpo-37330: open() no longer accept 'U' in file mode (GH-28118)Victor Stinner2021-09-0213-104/+61
* bpo-45085: Remove the binhex module (GH-28117)Victor Stinner2021-09-0212-1297/+30
* bpo-40360: Deprecate the lib2to3 package (GH-28116)Victor Stinner2021-09-024-2/+8
* bpo-44895: libregrtest: refleak check clears types later (GH-28113)Victor Stinner2021-09-014-14/+20
* bpo-31299: make it possible to filter out frames from tracebacks (GH-28067)Irit Katriel2021-08-314-1/+34
* bpo-45059: Add module cleanup to IDLE test_macosx (GH-28102)Terry Jan Reedy2021-08-311-0/+9
* bpo-45057: Simplify RegressionTestResult (GH-28081)Serhiy Storchaka2021-08-311-31/+2
* bpo-45039: Consistently use ADDOP_LOAD_CONST in compiler rather than ADDOP_O(...Irit Katriel2021-08-311-2/+4
* bpo-45059: Fix IDLE test typo: using "==" instead of "=" (GH-28086)Serhiy Storchaka2021-08-311-1/+1
* bpo-37596: Clean up the set/frozenset marshalling code (GH-28068)Brandt Bucher2021-08-311-8/+11