summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' into fix-traceback-syntax-errorfix-traceback-syntax-errorGuido van Rossum2020-05-1446-1793/+1118
|\
| * bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)Pablo Galindo2020-05-1510-44/+136
| * bpo-38872: Document exec symbol for codeop.compile_command (GH-20047)Joannah Nanjekye2020-05-143-5/+7
| * bpo-40462: Fix typo in test_json (GH-20094)Victor Stinner2020-05-151-1/+1
| * bpo-40460: Fix typo in idlelib/zzdummy.py (GH-20093)Victor Stinner2020-05-151-1/+1
| * bpo-40548: GitHub Action workflow: skip jobs on doc only PRs (GH-19983)Filipe Laíns2020-05-151-0/+24
| * bpo-40602: _Py_hashtable_set() reports rehash failure (GH-20077)Victor Stinner2020-05-142-14/+26
| * bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083)Lysandros Nikolaou2020-05-145-46/+82
| * bpo-40619: Correctly handle error lines in programs without file mode (GH-20090)Pablo Galindo2020-05-142-25/+7
| * bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091)Victor Stinner2020-05-144-120/+151
| * Revert "bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)" (GH...Victor Stinner2020-05-142-1325/+123
| * bpo-40549: posixmodule.c uses defining_class (GH-20075)Victor Stinner2020-05-142-137/+132
| * bpo-40495: compileall option to hardlink duplicate pyc files (GH-19901)Lumír 'Frenzy' Balhar2020-05-146-15/+285
| * bpo-40275: Import locale module lazily in gettext (GH-19905)Hai Shi2020-05-141-1/+7
| * bpo-40597: email: Use CTE if lines are longer than max_line_length consistent...Arkadiusz Hiler2020-05-133-7/+23
| * bpo-40521: Add PyInterpreterState.unicode (GH-20081)Victor Stinner2020-05-143-40/+48
| * bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858)Chris Jerdonek2020-05-133-11/+57
| * bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)Victor Stinner2020-05-145-6/+8
| * 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-141-2/+7
* | Apply PEP 7 suggestions from code reviewGuido van Rossum2020-05-141-6/+12
* | Remove debug print() callsGuido van Rossum2020-05-141-4/+0
* | Add thorough test, and fix found issues in traceback.pyGuido van Rossum2020-05-132-13/+38
* | Fix test (and rebase)Guido van Rossum2020-05-131-1/+1
* | Refactor print_error_text()Guido van Rossum2020-05-131-21/+43
* | Misc/NEWS blurbGuido van Rossum2020-05-131-0/+2
* | bpo-40612: Fix SyntaxError edge cases in traceback moduleGuido van Rossum2020-05-132-10/+14
|/
* 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-132-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-113-13/+0
* bpo-40480: restore ability to join fnmatch.translate() results (GH-20049)Tim Peters2020-05-112-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-114-1/+57
* bpo-39465: Don't access directly _Py_Identifier members (GH-20043)Victor Stinner2020-05-124-11/+11