summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-41654: Fix compiler warning in MemoryError_dealloc() (GH-22387)Victor Stinner2020-09-231-1/+2
* bpo-41833: threading.Thread now uses the target name (GH-22357)Victor Stinner2020-09-234-10/+55
* bpo-30155: Add macros to get tzinfo from datetime instances (GH-21633)Zackery Spytz2020-09-238-17/+46
* bpo-33822: Update IDLE section of What's New 3.8 (GH-22383)Terry Jan Reedy2020-09-231-0/+10
* bpo-41844: Add IDLE section to What's New 3.9 (GN-22382)Terry Jan Reedy2020-09-231-0/+14
* bpo-41841: Prepare IDLE News for 3.10 (GH-22379)Terry Jan Reedy2020-09-231-2/+7
* bpo-37779 : Add information about the overriding behavior of ConfigParser.rea...sblondon2020-09-231-0/+24
* bpo-40170: Use inline _PyType_HasFeature() function (GH-22375)Victor Stinner2020-09-232-2/+3
* bpo-40941: Fix stackdepth compiler warnings (GH-22377)Victor Stinner2020-09-231-4/+4
* bpo-40941: Fix fold_tuple_on_constants() compiler warnings (GH-22378)Victor Stinner2020-09-231-4/+2
* bpo-40521: Fix PyUnicode_InternInPlace() (GH-22376)Victor Stinner2020-09-231-0/+4
* bpo-41834: Remove _Py_CheckRecursionLimit variable (GH-22359)Victor Stinner2020-09-237-18/+10
* bpo-1635741, unicodedata: add ucd_type parameter to UCD_Check() macro (GH-22328)Mohamed Koubaa2020-09-231-13/+16
* bpo-1635741: Port _lsprof extension to multi-phase init (PEP 489) (GH-22220)Mohamed Koubaa2020-09-233-99/+139
* bpo-41513: Improve order of adding fractional values. Improve variable names....Raymond Hettinger2020-09-231-12/+12
* bpo-41816: `StrEnum.__str__` is `str.__str__` (GH-22362)Ethan Furman2020-09-223-0/+48
* bpo-35764: Rewrite the IDLE Calltips doc section (GH-22363)Terry Jan Reedy2020-09-224-42/+51
* bpo-41810: Reintroduce `types.EllipsisType`, `.NoneType` & `.NotImplementedTy...Bas van Beek2020-09-227-5/+54
* bpo-41602: raise SIGINT exit code on KeyboardInterrupt from pymain_run_module...Thomas Grainger2020-09-223-7/+92
* bpo-41817: use new StrEnum to ensure all members are strings (GH-22348)Ethan Furman2020-09-222-7/+8
* bpo-40670: More reliable validation of statements in timeit.Timer. (GH-22358)Serhiy Storchaka2020-09-223-0/+13
* Py_IS_TYPE() macro uses Py_TYPE() (GH-22341)Victor Stinner2020-09-221-1/+1
* Enum: add extended AutoNumber example (GH-22349)Ethan Furman2020-09-222-0/+27
* bpo-40181: Remove '/' reminder in IDLE calltips. (GH-22350)Terry Jan Reedy2020-09-224-9/+8
* bpo-41756: Refactor gen_send_ex(). (GH-22330)Serhiy Storchaka2020-09-221-94/+99
* bpo-41816: add `StrEnum` (GH-22337)Ethan Furman2020-09-224-22/+104
* bpo-40084: Enum - dir() includes member attributes (GH-19219)Angelin BOOZ2020-09-215-2/+20
* bpo-1635741: Convert an _lsprof method to argument clinic (GH-22240)Mohamed Koubaa2020-09-212-31/+86
* bpo-41819: Fix compiler warning in init_dump_ascii_wstr() (GH-22332)Samuel Marks2020-09-211-1/+1
* bpo-41513: Add accuracy tests for math.hypot() (GH-22327)Raymond Hettinger2020-09-211-0/+63
* [doc] Teach 0-args form of super in Programming FAQ (GH-22176)Andre Delfino2020-09-201-8/+7
* bpo-12178: Fix escaping of escapechar in csv.writer() (GH-13710)Berker Peksag2020-09-203-0/+20
* bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)Peter McCormick2020-09-203-0/+13
* Add missing whatsnew entry for TestCase.assertNoLogs (GH-22317)Mark Dickinson2020-09-192-0/+8
* bpo-33689: Blank lines in .pth file cause a duplicate sys.path entry (GH-20679)idomic2020-09-193-1/+12
* bpo-41811: create SortKey members using first given value (GH-22316)Ethan Furman2020-09-192-3/+7
* bpo-41756: Introduce PyGen_Send C API (GH-22196)Vladimir Matveev2020-09-197-39/+148
* Make fractional value accumulation consistent inside and outside the loop. (G...Raymond Hettinger2020-09-191-5/+4
* bpo-35293: Travis CI uses "make venv" for the doc (GH-22307)Victor Stinner2020-09-183-8/+12
* bpo-35293: Remove RemovedInSphinx40Warning (GH-22198)Dong-hee Na2020-09-182-15/+22
* bpo-41762: Fix usage of productionlist markup in the doc (GH-22281)Victor Stinner2020-09-188-69/+70
* Remove duplicated words words (GH-22298)Serhiy Storchaka2020-09-184-5/+5
* bpo-41808: Add What's New 3.9 entry missing from master (#22294)Terry Jan Reedy2020-09-181-0/+5
* bpo-27032, bpo-37328: Document removing HTMLParser.unescape(). (GH-22288)Serhiy Storchaka2020-09-171-0/+6
* bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998)Serhiy Storchaka2020-09-175-3/+34
* bpo-41715: Fix potential catastrofic backtracking in c_analyzer. (GH-22091)Serhiy Storchaka2020-09-171-6/+6
* Enum: make `Flag` and `IntFlag` members iterable (GH-22221)Ethan Furman2020-09-164-0/+32
* _auto_called cleanup (GH-22285)Ethan Furman2020-09-162-1/+12
* bpo-41746: Add type information to asdl_seq objects (GH-22223)Pablo Galindo2020-09-1622-1087/+1339
* acknowledge Weipeng Hong's contributions (GH-22284)Ethan Furman2020-09-161-0/+1