summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-37207: Use vectorcall for list() (GH-18928)Petr Viktorin2020-03-302-0/+30
* bpo-39073: validate Address parts to disallow CRLF (#19007)Ashwin Ramaswami2020-03-303-0/+25
* bpo-40096: Support __attribute__((__noreturn__)) on xlc (GH-19204)Batuhan Taşkaya2020-03-291-0/+1
* bpo-40024: Update _elementtree to use PyModule_AddType() (GH-19205)Dong-hee Na2020-03-291-8/+14
* bpo-38002: Use False/True for IDLE pyshell bools (GH-19203)Terry Jan Reedy2020-03-281-13/+12
* bpo-40086: Update/fix test_etree test case in test_typing (GH-19189)Furkan Önder2020-03-281-4/+2
* bpo-36543: What's new: Document how to replace xml.etree.cElementTree (GH-19188)Miro Hrončok2020-03-271-1/+5
* bpo-39812: Remove daemon threads in concurrent.futures (GH-19149)Kyle Stanley2020-03-276-32/+99
* bpo-40045: Make "dunder" method documentation easier to locate (#19153)Javad Mokhtari2020-03-271-5/+5
* bpo-40089: Fix threading._after_fork() (GH-19191)Victor Stinner2020-03-272-1/+12
* bpo-38237: Use divmod for positional arguments whatsnew example (GH-19171)Ammar Askar2020-03-271-5/+4
* bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183)Victor Stinner2020-03-274-25/+31
* bpo-40077: Convert _json module to use PyType_FromSpec() (GH-19177)Dong-hee Na2020-03-272-157/+131
* bpo-38644: Make tstate more explicit inside pystate.c (GH-19182)Victor Stinner2020-03-263-47/+67
* bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184)Victor Stinner2020-03-263-65/+93
* bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180)Victor Stinner2020-03-267-66/+145
* bpo-1812: Fix newline conversion when doctest.testfile loads from a package w...Peter Donis2020-03-264-5/+100
* bpo-39879: Update datamodel docs to include dict ordering (GH-19006)Lahfa Samy2020-03-263-0/+13
* bpo-40069: Clear out .lst files on make clean (GH-19169)Batuhan Taşkaya2020-03-261-0/+1
* bpo-40071: Fix refleak in _functools module (GH19172)Paulo Henrique Silva2020-03-261-2/+4
* bpo-38410: Properly handle PySys_Audit() failures (GH-16657)Zackery Spytz2020-03-264-12/+20
* bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170)Andy Lester2020-03-261-5/+5
* bpo-40067: Improve error messages for multiple star expressions in assignment...Furkan Önder2020-03-264-3/+11
* bpo-39947: Add PyThreadState_GetID() function (GH-19163)Victor Stinner2020-03-256-2/+25
* bpo-39947: Add _PyThreadState_GetDict() function (GH-19160)Victor Stinner2020-03-253-11/+23
* bpo-19698: Document when importlib.machinery.FrozenImporter gained spec-relat...Brett Cannon2020-03-251-0/+4
* bpo-39947: Use PyThreadState_GetFrame() (GH-19159)Victor Stinner2020-03-252-4/+6
* bpo-40016: re docstring: Clarify relationship of inline and argument flags (#...Ram Rachum2020-03-252-2/+5
* bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)Victor Stinner2020-03-2515-109/+157
* bpo-40050: Rephrase NEWS entry (GH-19148)Victor Stinner2020-03-251-3/+3
* Use calloc-based functions, not malloc. (GH-19152)Andy Lester2020-03-2510-38/+17
* bpo-1635741: Port _functools module to multiphase initialization (PEP 489) (G...Paulo Henrique Silva2020-03-252-28/+34
* bpo-1635741: Port operator module to multiphase initialization (PEP 489) (GH-...Paulo Henrique Silva2020-03-252-23/+28
* bpo-36144: Add union operators to WeakValueDictionary584 (#19127)Curtis Bucher2020-03-254-0/+60
* bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)Dong-hee Na2020-03-2412-134/+67
* bpo-40029 mark test_importlib.test_zip as requiring zlib (#19105)Roman Yurchak2020-03-241-0/+4
* bpo-1635741: Port _weakref extension module to multiphase initialization (PEP...Victor Stinner2020-03-242-21/+38
* bpo-40014: Fix os.getgrouplist() (GH-19126)Victor Stinner2020-03-242-25/+29
* bpo-40013: Clarify documentation of restval in csv.DictReader (GH-19099)Juhana Jauhiainen2020-03-241-1/+2
* bpo-40050: Fix importlib._bootstrap_external (GH-19135)Victor Stinner2020-03-243-1757/+1745
* Clarify a guarantee of the logging module. (GH-19132)Gregory P. Smith2020-03-241-0/+1
* bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120)Victor Stinner2020-03-244-30/+14
* bpo-39689: Do not use native packing for format "?" with standard size (GH-18...Stefan Krah2020-03-241-0/+3
* closes bpo-40017: Add CLOCK_TAI constant to the time module. (GH-19096)Russell Owen2020-03-243-1/+16
* Updated documentation for FOR_ITER (GH-19113)laike9m2020-03-241-1/+1
* Revert "bpo-1635741: Port _weakref extension module to multiphase initializat...Victor Stinner2020-03-231-37/+21
* Post 3.9.0a5Łukasz Langa2020-03-231-1/+1
* Merge tag 'v3.9.0a5'Łukasz Langa2020-03-23129-315/+1381
|\
| * Python 3.9.0a5v3.9.0a5Łukasz Langa2020-03-23129-315/+1381
* | bpo-36144: Add union operators to WeakKeyDictionary (#19106)Curtis Bucher2020-03-234-0/+60