aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-27772: Make preceding width with 0 valid in string format. (GH-11270)Serhiy Storchaka2021-01-251-0/+2
* bpo-40176: Improve error messages for unclosed string literals (GH-19346)Batuhan Taskaya2021-01-201-0/+2
* bpo-42864: Improve error messages regarding unclosed parentheses (GH-24161)Pablo Galindo2021-01-191-0/+2
* bpo-42827: Fix crash on SyntaxError in multiline expressions (GH-24140)Lysandros Nikolaou2021-01-141-0/+2
* bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208)Tobias Holl2021-01-131-0/+1
* bpo-37324: Remove ABC aliases from collections (GH-23754)Hugo van Kemenade2021-01-131-0/+2
* bpo-41994: Fix refcount issues in Python/import.c (GH-22632)Serhiy Storchaka2021-01-121-0/+1
* bpo-42882: _PyRuntimeState_Init() leaves unicode next_index unchanged (GH-24193)Victor Stinner2021-01-121-0/+3
* bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)Mark Shannon2021-01-051-0/+1
* Python 3.10.0a4v3.10.0a4Pablo Galindo2021-01-0419-45/+0
* bpo-1635741: Port pyexpat to multi-phase init (PEP 489) (GH-22222)Mohamed Koubaa2021-01-041-0/+2
* bpo-42814: Fix undefined behavior in Objects/genericaliasobject.c (GH-24073)Zackery Spytz2021-01-031-0/+1
* bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067)Pablo Galindo2021-01-031-0/+2
* bpo-40631: Disallow single parenthesized star target (GH-24027)Lysandros Nikolaou2021-01-031-0/+2
* bpo-40077: Convert arraymodule to use heap types and establish module state (...Erlend Egeberg Aasland2021-01-021-0/+1
* bpo-27794: Add `name` attribute to `property` class (GH-23967)Yurii Karabas2020-12-301-0/+3
* bpo-40137: Convert _functools module to use PyType_FromModuleAndSpec. (GH-23405)Hai Shi2020-12-291-0/+1
* bpo-40521: Per-interpreter interned strings (GH-20085)Victor Stinner2020-12-261-0/+2
* bpo-42745: Make the type cache per-interpreter (GH-23947)Victor Stinner2020-12-261-0/+1
* bpo-39465: Fix _PyUnicode_FromId() for subinterpreters (GH-20058)Victor Stinner2020-12-261-0/+3
* bpo-32381: pymain_run_command() uses PyCF_IGNORE_COOKIE (GH-23724)Victor Stinner2020-12-231-0/+2
* bpo-42246: Don't eliminate jumps to jumps, if it will break PEP 626. (GH-23896)Mark Shannon2020-12-231-0/+1
* bpo-42008: Fix internal _random.Random() seeding for the one argument case (G...AMIR2020-12-211-0/+1
* bpo-42238: Check Misc/NEWS.d/next/ for reStructuredText issues. (GH-23802)Julien Palard2020-12-181-8/+7
* bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...Mark Shannon2020-12-171-0/+3
* Fix reStructuredText typo in NEWS.d. (GH-23800)Julien Palard2020-12-161-1/+1
* bpo-42615: Delete redundant jump instructions that only bypass empty blocks (...Om G2020-12-161-0/+2
* bpo-42639: Move atexit state to PyInterpreterState (GH-23763)Victor Stinner2020-12-151-0/+3
* bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and t...kj2020-12-131-0/+11
* bpo-30858: Improve error location for expressions with assignments (GH-23753)Pablo Galindo2020-12-131-0/+2
* bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642)Victor Stinner2020-12-081-0/+3
* Python 3.10.0a3v3.10.0a3Pablo Galindo2020-12-0721-72/+0
* bpo-42576: Clarify only debug builds are affected in news (GH-23663)kj2020-12-061-1/+2
* bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...kj2020-12-051-0/+3
* bpo-42536: GC track recycled tuples (GH-23623)Brandt Bucher2020-12-041-0/+26
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-041-0/+2
* bpo-42246: Make sure that line number is correct after a return, as required ...Mark Shannon2020-12-021-0/+2
* bpo-42500: Fix recursion in or after except (GH-23568)Mark Shannon2020-12-021-0/+2
* bpo-42202: Store func annotations as a tuple (GH-23316)Yurii Karabas2020-11-251-0/+2
* bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461)Serhiy Storchaka2020-11-221-0/+2
* bpo-1635741: Port _warnings to the multi-phase init (GH-23379)Victor Stinner2020-11-191-0/+2
* bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267)Mark Shannon2020-11-171-0/+1
* bpo-41686: Always create the SIGINT event on Windows (GH-23344)Victor Stinner2020-11-171-0/+4
* bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332)Pablo Galindo2020-11-171-0/+2
* bpo-42316: Allow unparenthesized walrus operator in indexes (GH-23317)Lysandros Nikolaou2020-11-171-0/+1
* bpo-42374: Allow unparenthesized walrus in genexps (GH-23319)Lysandros Nikolaou2020-11-161-0/+2
* bpo-42332: Add weakref slot to types.GenericAlias (GH-23250)kj2020-11-151-0/+1
* bpo-42296: On Windows, fix CTRL+C regression (GH-23257)Victor Stinner2020-11-131-0/+4
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-121-0/+2
* bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...kj2020-11-081-0/+5