summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Python 3.9.0a3v3.9.0a3Łukasz Langa2020-01-2422-67/+0
* bpo-17005: Add a class to perform topological sorting to the standard library...Pablo Galindo2020-01-231-0/+3
* bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...Pablo Galindo2020-01-231-0/+2
* bpo-39320: Handle unpacking of *values in compiler (GH-17984)Mark Shannon2020-01-231-0/+15
* bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131)Pablo Galindo2020-01-221-0/+2
* bpo-39336: Allow packages to not let their child modules be set on them (#18006)Dino Viehland2020-01-221-0/+1
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Andrew Svetlov2020-01-211-0/+1
* bpo-1635741: Port _json extension module to multiphase initialization (PEP 48...Hai Shi2020-01-151-0/+1
* bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...Pablo Galindo2020-01-141-0/+2
* bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)Géry Ogam2020-01-141-0/+4
* bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)Mark Shannon2020-01-141-0/+9
* bpo-32021: Support brotli .br encoding in mimetypes (#12200)Philip McMahon2020-01-121-0/+1
* bpo-39200: Correct the error message for min/max builtin function (GH-17814)Dong-hee Na2020-01-101-0/+2
* bpo-39166: Fix trace of last iteration of async for loops (#17800)Pablo Galindo2020-01-101-0/+2
* bpo-39235: Fix end location for genexp in call args (GH-17925)Guido van Rossum2020-01-091-0/+2
* bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)Pablo Galindo2020-01-061-0/+2
* bpo-39200: Correct the error message for range() empty constructor (GH-17813)Pablo Galindo2020-01-051-0/+2
* Fix constant folding optimization for positional only arguments (GH-17837)Anthony Sottile2020-01-051-0/+2
* Fix SystemError when nested function has annotation on positional-only argume...Anthony Sottile2020-01-051-0/+2
* bpo-39114: Fix tracing of except handlers with name binding (GH-17769)Pablo Galindo2020-01-021-0/+2
* bpo-13601: always use line-buffering for sys.stderr (GH-17646)Jendrik Seipp2020-01-011-0/+6
* bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCo...Dong-hee Na2019-12-311-0/+2
* bpo-38610: Fix possible crashes in several list methods (GH-17022)Zackery Spytz2019-12-301-0/+2
* Python 3.9.0a2v3.9.0a2Łukasz Langa2019-12-1820-43/+0
* bpo-39028: Performance enhancement in keyword extraction (GH-17576)Sebastian Berg2019-12-181-0/+1
* bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)Lysandros Nikolaou2019-12-181-0/+1
* bpo-38858: Small integer per interpreter (GH-17315)Victor Stinner2019-12-171-0/+5
* bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985)Batuhan Taşkaya2019-12-151-0/+1
* bpo-38021: Modify AIX platform_tag so it covers PEP 425 needs (GH-17303)Michael Felt2019-12-161-0/+4
* bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...Lysandros Nikolaou2019-12-121-0/+2
* bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than raise a dep...Steve Dower2019-12-091-0/+3
* bpo-20443: No longer make sys.argv[0] absolute for script (GH-17534)Victor Stinner2019-12-091-0/+3
* bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (...Batuhan Taşkaya2019-12-081-0/+1
* bpo-38852: Set thread stack size to 8 Mb for debug builds on android platform...xdegaye2019-12-081-0/+1
* bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks a...Steve Dower2019-11-281-0/+2
* bpo-38922: Raise code.__new__ audit event when code object replace() is calle...Steve Dower2019-11-261-0/+2
* bpo-38892: Improve docs for audit event (GH-17361)Terry Jan Reedy2019-11-261-0/+1
* bpo-27145: small_ints[x] could be returned in long_add and long_sub (GH-15716)HongWeipeng2019-11-261-0/+1
* bpo-38328: Speed up the creation time of constant list and set display. (GH-1...Brandt Bucher2019-11-261-0/+2
* Produce cleaner bytecode for 'with' and 'async with' by generating separate c...Mark Shannon2019-11-211-0/+5
* bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)Victor Stinner2019-11-201-0/+3
* bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)Victor Stinner2019-11-201-0/+2
* Merge tag 'v3.9.0a1'Łukasz Langa2019-11-2090-193/+0
|\
| * Python 3.9.0a1v3.9.0a1Łukasz Langa2019-11-1990-193/+0
* | bpo-38707: Fix for multiprocessing.Process MainThread.native_id (GH-17088)Jake Tesler2019-11-191-0/+1
* | bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)Vincent Michel2019-11-191-0/+2
|/
* bpo-38631: Avoid Py_FatalError() in float.__getformat__() (GH-17232)Victor Stinner2019-11-181-0/+2
* bpo-38639: Optimize floor(), ceil() and trunc() for floats. (GH-16991)Serhiy Storchaka2019-11-161-0/+2
* bpo-38613: Optimize set operations of dict keys. (GH-16961)Inada Naoki2019-11-081-0/+3
* bpo-38640: Allow break and continue in always false while loops (GH-16992)Pablo Galindo2019-10-301-0/+3