summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* | bpo-40036: Deleting duplicates in itertoolsmodule.c (GH-18958)AlphaHot2020-03-231-26/+0
* | bpo-36144: Add PEP 584 operators to collections.ChainMap (#18832)Curtis Bucher2020-03-235-0/+69
* | bpo-40014: Fix os.getgrouplist() on macOS (GH-19118)Victor Stinner2020-03-232-0/+22
* | bpo-1635741: Port time module to multiphase initialization (PEP 489) (GH-19107)Paulo Henrique Silva2020-03-232-51/+54
|/
* bpo-39830: Add zipfile.Path to __all__ (GH-19115)Zackery Spytz2020-03-232-1/+3
* bpo-39999: Improve compatibility of the ast module. (GH-19056)Serhiy Storchaka2020-03-2210-22/+49
* bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516)Ronald Oussoren2020-03-225-1/+34
* bpo-40024: Add PyModule_AddType() helper function (GH-19088)Dong-hee Na2020-03-2210-42/+52
* bpo-36543: Remove the xml.etree.cElementTree module. (GH-19108)Serhiy Storchaka2020-03-222-18/+0
* bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. ...Serhiy Storchaka2020-03-215-14/+32
* bpo-24916: Remove an outdated comment. (GH-19101)Serhiy Storchaka2020-03-211-2/+0
* bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)Victor Stinner2020-03-207-34/+14
* bpo-39947: Add PyThreadState_GetFrame() function (GH-19092)Victor Stinner2020-03-206-5/+33
* bpo-40010: Optimize pending calls in multithreaded applications (GH-19091)Victor Stinner2020-03-203-6/+22
* bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087)Victor Stinner2020-03-205-53/+49
* bpo-40010: Pass tstate to ceval GIL functions (GH-19077)Victor Stinner2020-03-202-138/+199
* bpo-1635741: Port _weakref extension module to multiphase initialization (PEP...Hai Shi2020-03-202-21/+38
* bpo-39797 Changes to socketserver.BaseServer's shutdown() method. (GH-18929)amaajemyfren2020-03-201-0/+2
* bpo-40019: Skip test_gdb if Python was optimized (GH-19081)Victor Stinner2020-03-203-7/+20
* bpo-39877: 4th take_gil() fix for daemon threads (GH-19080)Victor Stinner2020-03-191-22/+23
* Fix "versionchanged" for pow named arguments (GH-19042)Mark Dickinson2020-03-191-1/+1