summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072)Guido van Rossum2020-05-152-9/+27
* bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)Pablo Galindo2020-05-155-23/+31
* bpo-40462: Fix typo in test_json (GH-20094)Victor Stinner2020-05-141-1/+1
* bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083)Lysandros Nikolaou2020-05-143-1/+41
* bpo-40619: Correctly handle error lines in programs without file mode (GH-20090)Pablo Galindo2020-05-141-0/+2
* Revert "bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)" (GH...Victor Stinner2020-05-141-299/+2
* bpo-40495: compileall option to hardlink duplicate pyc files (GH-19901)Lumír 'Frenzy' Balhar2020-05-141-3/+221
* bpo-40597: email: Use CTE if lines are longer than max_line_length consistent...Arkadiusz Hiler2020-05-141-0/+15
* bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858)Chris Jerdonek2020-05-132-1/+45
* bpo-40334: Always show the caret on SyntaxErrors (GH-20050)Lysandros Nikolaou2020-05-131-9/+6
* bpo-40331: Increase test coverage for the statistics module (GH-19608)Tzanetos Balitsaris2020-05-131-0/+60
* bpo-40501: Replace ctypes code in uuid with native module (GH-19948)Steve Dower2020-05-121-20/+7
* bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...Serhiy Storchaka2020-05-121-0/+7
* bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...Serhiy Storchaka2020-05-123-4/+9
* bpo-39481: remove generic classes from ipaddress/mmap (GH-20045)Batuhan Taskaya2020-05-121-4/+0
* bpo-40480: restore ability to join fnmatch.translate() results (GH-20049)Tim Peters2020-05-121-3/+21
* bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)Raymond Hettinger2020-05-121-0/+19
* bpo-40334: produce specialized errors for invalid del targets (GH-19911)Shantanu2020-05-112-8/+50
* bpo-40585: Normalize errors messages in codeop when comparing them (GH-20030)Pablo Galindo2020-05-111-0/+9
* bpo-40397: Fix subscription of nested generic alias without parameters. (GH-2...Serhiy Storchaka2020-05-101-1/+12
* bpo-40334: Avoid collisions between parser variables and grammar variables (G...Pablo Galindo2020-05-101-0/+27
* bpo-40570: Improve compatibility of uname_result with late-bound .platform (#...Jason R. Coombs2020-05-091-0/+15
* bpo-39791: Add files() to importlib.resources (GH-19722)Jason R. Coombs2020-05-082-0/+40
* bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)Raymond Hettinger2020-05-081-1/+72
* bpo-40273: Reversible mappingproxy (FH-19513)Zackery Spytz2020-05-081-0/+9
* bpo-40555: Check for p->error_indicator in loop rules after the main loop is ...Pablo Galindo2020-05-081-0/+9
* bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)Eric Snow2020-05-071-2/+299
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-072-1/+74
* bpo-40334: Error message for invalid default args in function call (GH-19973)Lysandros Nikolaou2020-05-072-2/+5
* bpo-40334: Fix error location upon parsing an invalid string literal (GH-19962)Lysandros Nikolaou2020-05-072-5/+4
* bpo-40334: Allow trailing comma in parenthesised context managers (GH-19964)Pablo Galindo2020-05-061-1/+65
* bpo-40528: Improve and clear several aspects of the ASDL definition code for ...Batuhan Taskaya2020-05-061-1/+1
* bpo-40527: Fix command line argument parsing (GH-19955)Victor Stinner2020-05-061-0/+11
* bpo-40480 "fnmatch" exponential execution time (GH-19908)Tim Peters2020-05-061-0/+17
* bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objec...Pablo Galindo2020-05-051-0/+20
* bpo-40504: Allow weakrefs to lru_cache objects (GH-19938)Dennis Sweeney2020-05-051-0/+31
* bpo-40355: Improve error messages in ast.literal_eval with malformed Dict nod...Curtis Bucher2020-05-051-0/+6
* bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)Victor Stinner2020-05-051-3/+0
* bpo-40275: test.support imports lazily locale import (GH-19761)Hai Shi2020-05-041-1/+1
* bpo-40489: Add test case for dict contain use after free (GH-19906)Dong-hee Na2020-05-041-0/+13
* bpo-40135: Fix multiprocessing test_shared_memory_across_processes() (GH-19892)Hai Shi2020-05-041-1/+3
* bpo-40246: Revert reporting of invalid string prefixes (GH-19888)Lysandros Nikolaou2020-05-041-1/+1
* bpo-40334: Spacialized error message for invalid args after bare '*' (GH-19865)Lysandros Nikolaou2020-05-043-4/+10
* bpo-40408: Fix support of nested type variables in GenericAlias. (GH-19836)Serhiy Storchaka2020-05-041-7/+34
* bpo-40493: fix function type comment parsing (GH-19894)Shantanu2020-05-041-0/+8
* bpo-38870: Don't start generated output with newlines in ast.unparse (GH-19636)Batuhan Taskaya2020-05-031-7/+5
* bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877)Chris Jerdonek2020-05-031-0/+20
* bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)Raymond Hettinger2020-05-021-1/+2
* Fix some scripts in the peg generator folder (GH-19853)Pablo Galindo2020-05-022-63/+5
* bpo-29587: Update gen.throw() to chain exceptions (#19823)Chris Jerdonek2020-05-021-0/+17