summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* issue-25872: Fix KeyError using linecache from multiple threads (GH-18007)Michael Graczyk2020-05-131-3/+3
* bpo-38787: Fix Argument Clinic defining_class_converter (GH-20074)Victor Stinner2020-05-131-2/+7
* bpo-40334: Always show the caret on SyntaxErrors (GH-20050)Lysandros Nikolaou2020-05-135-192/+293
* bpo-34790: add version of removal of explicit passing of coros to `asyncio.wa...jack11422020-05-132-1/+2
* bpo-40613: Remove compiler warning from _xxsubinterpretersmodule (GH-20069)Dong-hee Na2020-05-131-0/+8
* bpo-40331: Increase test coverage for the statistics module (GH-19608)Tzanetos Balitsaris2020-05-131-0/+60
* bpo-40602: Optimize _Py_hashtable_get_ptr() (GH-20066)Victor Stinner2020-05-131-24/+23
* bpo-40609: _Py_hashtable_t values become void* (GH-20065)Victor Stinner2020-05-134-303/+140
* bpo-40609: _tracemalloc allocates traces (GH-20064)Victor Stinner2020-05-133-102/+117
* bpo-40609: Add destroy functions to _Py_hashtable (GH-20062)Victor Stinner2020-05-134-52/+73
* bpo-40609: Remove _Py_hashtable_t.key_size (GH-20060)Victor Stinner2020-05-134-188/+120
* bpo-40609: Rewrite how _tracemalloc handles domains (GH-20059)Victor Stinner2020-05-122-160/+174
* Fix Wikipedia link (GH-20031)Allen Guo2020-05-121-5/+5
* bpo-40501: Replace ctypes code in uuid with native module (GH-19948)Steve Dower2020-05-129-186/+248
* bpo-40602: Add _Py_HashPointerRaw() function (GH-20056)Victor Stinner2020-05-123-5/+13
* bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)scoder2020-05-125-4/+10
* bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...Serhiy Storchaka2020-05-123-4/+31
* bpo-40602: Optimize _Py_hashtable for pointer keys (GH-20051)Victor Stinner2020-05-122-94/+153
* bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...Serhiy Storchaka2020-05-1210-43/+90
* bpo-39481: remove generic classes from ipaddress/mmap (GH-20045)Batuhan Taskaya2020-05-123-13/+0
* bpo-40480: restore ability to join fnmatch.translate() results (GH-20049)Tim Peters2020-05-122-7/+34
* bpo-40602: _Py_hashtable_new() uses PyMem_Malloc() (GH-20046)Victor Stinner2020-05-121-3/+4
* bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)Victor Stinner2020-05-128-13/+26
* bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)Raymond Hettinger2020-05-124-1/+57
* bpo-39465: Don't access directly _Py_Identifier members (GH-20043)Victor Stinner2020-05-114-11/+11
* bpo-40334: produce specialized errors for invalid del targets (GH-19911)Shantanu2020-05-114-181/+352
* bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ...Hai Shi2020-05-113-5/+18
* bpo-40561: Add docstrings for webbrowser open functions (GH-19999)Brad Solomon2020-05-112-0/+17
* bpo-36346: array: Don't use deprecated APIs (GH-19653)Inada Naoki2020-05-114-55/+63
* bpo-40575: Avoid unnecessary overhead in _PyDict_GetItemIdWithError() (GH-20018)scoder2020-05-111-1/+3
* bpo-40585: Normalize errors messages in codeop when comparing them (GH-20030)Pablo Galindo2020-05-113-0/+17
* Improve code clarity for the set lookup logic (GH-20028)Raymond Hettinger2020-05-101-125/+55
* bpo-40257: Tweak docstrings for special generic aliases. (GH-20022)Serhiy Storchaka2020-05-101-1/+4
* bpo-40397: Fix subscription of nested generic alias without parameters. (GH-2...Serhiy Storchaka2020-05-102-3/+16
* bpo-37986: Improve perfomance of PyLong_FromDouble() (GH-15611)Sergey Fedoseev2020-05-103-23/+19
* bpo-40549: Convert posixmodule.c to multiphase init (GH-19982)Victor Stinner2020-05-103-129/+147
* bpo-40397: Remove __args__ and __parameters__ from _SpecialGenericAlias (GH-1...Serhiy Storchaka2020-05-102-80/+89
* Add link to Enum class (GH-19884)Andre Delfino2020-05-101-1/+1
* bpo-40334: Avoid collisions between parser variables and grammar variables (G...Pablo Galindo2020-05-105-5716/+5758
* bpo-40570: Improve compatibility of uname_result with late-bound .platform (#...Jason R. Coombs2020-05-092-3/+19
* bpo-40566: Apply PEP 573 to abc module (GH-20005)Dong-hee Na2020-05-092-15/+20
* bpo-39791: Add files() to importlib.resources (GH-19722)Jason R. Coombs2020-05-087-102/+295
* bpo-40502: Initialize n->n_col_offset (GH-19988)Joannah Nanjekye2020-05-082-0/+3
* bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)Raymond Hettinger2020-05-084-13/+116
* Make the first dataclass example more useful (GH-19994)Ned Batchelder2020-05-081-0/+2
* bpo-40559: Add Py_DECREF to _asynciomodule.c:task_step_impl() (GH-19990)Chris Jerdonek2020-05-082-0/+5
* bpo-40273: Reversible mappingproxy (FH-19513)Zackery Spytz2020-05-084-0/+25
* bpo-40555: Check for p->error_indicator in loop rules after the main loop is ...Pablo Galindo2020-05-083-28/+37
* bpo-40517: Implement syntax highlighting support for ASDL (GH-19967)Batuhan Taskaya2020-05-073-2/+54
* bpo-40548: Always run GitHub action, even on doc PRs (GH-19981)Victor Stinner2020-05-071-10/+3