summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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-40397: Refactor typing._GenericAlias (GH-19719)Serhiy Storchaka2020-05-071-191/+198
* 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-062-7/+70
* 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-052-4/+13
* bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)Victor Stinner2020-05-051-3/+0
* bpo-40459: Fix NameError in platform.py (GH-19855)Dennis Sweeney2020-05-051-3/+3
* 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-032-11/+15
* bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877)Chris Jerdonek2020-05-031-0/+20
* Minor code cleanups for statistics (GH-19873)Raymond Hettinger2020-05-031-76/+7
* bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)Raymond Hettinger2020-05-022-1/+6
* bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers ...Sander2020-05-021-1/+2
* bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)Serhiy Storchaka2020-05-021-2/+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
* Simplify choice()'s interaction with the private _randbelow() method (GH-19831)Raymond Hettinger2020-05-012-12/+8
* bpo-40334: unskip test_function_type in test_unparse with the new parser (GH-...Pablo Galindo2020-05-011-1/+0
* bpo-40334: Improve column offsets for thrown syntax errors by Pegen (GH-19782)Batuhan Taskaya2020-05-012-24/+24
* bpo-40462: fix variable and function names (GH-19832)Furkan Önder2020-05-013-4/+2
* bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)Victor Stinner2020-05-012-1/+5
* Change 'exception happened' to 'exception occurred' in two places (#19767)Noah Doersing2020-05-011-1/+1
* bpo-40334: Add support for feature_version in new PEG parser (GH-19827)Lysandros Nikolaou2020-05-011-6/+0
* bpo-40443: Remove unused imports in stdlib (GH-19815)Victor Stinner2020-05-013-4/+2
* bpo-40275: Fix name error in support.socket_helper (GH-19825)Victor Stinner2020-05-011-4/+6
* Remove dead code in test__xxsubinterpreters (GH-19826)Victor Stinner2020-05-011-20/+0
* Revert "bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19...Victor Stinner2020-04-301-17/+0
* bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)Chris Jerdonek2020-04-301-0/+17
* bpo-40334: Support type comments (GH-19780)Guido van Rossum2020-04-301-1/+6
* compileall: Fix typos in docstring (GH-19810)Jelle Zijlstra2020-04-301-2/+2
* bpo-40443: Remove unused imports in distutils (GH-19802)Victor Stinner2020-04-3011-17/+6
* bpo-40443: Remove unused imports in the stdlib (GH-19803)Victor Stinner2020-04-3010-12/+0
* bpo-40394 - difflib.SequenceMatched.find_longest_match default args (GH-19742)lrjball2020-04-302-3/+55
* bpo-40443: Remove unused imports in idlelib (GH-19801)Victor Stinner2020-04-306-6/+3
* bpo-40389: Improve repr of typing.Optional (#19714)Vlad Serebrennikov2020-04-303-2/+9
* bpo-40443: Remove unused imports in tests (GH-19804)Victor Stinner2020-04-3018-20/+2
* bpo-40443: Remove unused imports in tests (GH-19805)Victor Stinner2020-04-2917-20/+4
* bpo-40334: Fix test_peg_parser to actually use the old parser (GH-19778)Lysandros Nikolaou2020-04-291-5/+4