summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
Commit message (Expand)AuthorAgeFilesLines
* 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-021-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-251-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-051-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-181-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-161-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-161-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-091-0/+5
* bpo-40077: Convert _queuemodule to use heap types (GH-23136)Erlend Egeberg Aasland2020-11-071-0/+1
* bpo-42282: Fold constants inside named expressions (GH-23190)Nick Coghlan2020-11-071-0/+3
* bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)Pablo Galindo2020-11-051-0/+3
* Merge tag 'v3.10.0a2' into masterPablo Galindo2020-11-0321-47/+0
|\
| * Python 3.10.0a2v3.10.0a2Pablo Galindo2020-11-0321-47/+0
* | bpo-40077: Convert mmap.mmap static type to a heap type (GH-23108)Erlend Egeberg Aasland2020-11-031-0/+1
|/
* bpo-41796: Make _ast module state per interpreter (GH-23024)Victor Stinner2020-11-021-0/+2
* bpo-41435: Add sys._current_exceptions() function (GH-21689)Julien Danjou2020-11-021-0/+1
* bpo-42236: Use UTF-8 encoding if nl_langinfo(CODESET) fails (GH-23086)Victor Stinner2020-11-011-0/+2