summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Update docs. (#19922)revert-19108-remove-cElementTreeSerhiy Storchaka2020-05-053-6/+3
* Revert "bpo-36543: Remove the xml.etree.cElementTree module. (GH-19108)"Serhiy Storchaka2020-05-052-0/+18
* bpo-40286: Put methods in correct sections. Add security notice to use secret...Raymond Hettinger2020-05-041-10/+15
* bpo-40459: Fix NameError in platform.py (GH-19855)Dennis Sweeney2020-05-052-3/+4
* bpo-1635741: Port syslog module to multiphase initialization (GH-19907)Dong-hee Na2020-05-052-59/+64
* bpo-40499: Mention that asyncio.wait() needs a non-empty aws set (GH-19900)Joel Rosdahl2020-05-043-0/+4
* bpo-39470: Indicate that ``os.makedirs`` is equivalent to ``Path.mkdir`` (GH-...Joannah Nanjekye2020-05-041-0/+1
* bpo-40360: Add a What's New entry for lib2to3 pending deprecation (GH-19898)Miro Hrončok2020-05-041-0/+10
* 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-051-0/+13
* bpo-40135: Fix multiprocessing test_shared_memory_across_processes() (GH-19892)Hai Shi2020-05-041-1/+3
* bpo-40455: Remove gcc10 warning about x_digits (#19852)Dong-hee Na2020-05-041-4/+3
* bpo-39573: Use Py_IS_TYPE to check for types (GH-19882)Hai Shi2020-05-042-3/+3
* bpo-40246: Revert reporting of invalid string prefixes (GH-19888)Lysandros Nikolaou2020-05-046-12/+2
* bpo-40334: Spacialized error message for invalid args after bare '*' (GH-19865)Lysandros Nikolaou2020-05-045-210/+472
* bpo-40491: Fix typo in syntax error for numeric literals (GH-19893)Shantanu2020-05-041-1/+1
* bpo-40408: Fix support of nested type variables in GenericAlias. (GH-19836)Serhiy Storchaka2020-05-043-26/+140
* bpo-40493: fix function type comment parsing (GH-19894)Shantanu2020-05-033-0/+78
* Clean up unused imports for the peg generator module (GH-19891)Anthony Shaw2020-05-049-17/+4
* bpo-40334: Set error_indicator in _PyPegen_raise_error (GH-19887)Lysandros Nikolaou2020-05-041-0/+1
* Remove outdated and confusing advice about setting maxsize (GH-19889)Raymond Hettinger2020-05-031-2/+1
* Remove out-of-date comment (GH-19886)Raymond Hettinger2020-05-031-2/+1
* bpo-38870: Don't start generated output with newlines in ast.unparse (GH-19636)Batuhan Taskaya2020-05-032-11/+15
* Simplify set entry insertion logic. (GH-19881)Raymond Hettinger2020-05-031-16/+2
* bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877)Chris Jerdonek2020-05-032-4/+25
* Minor code cleanups for statistics (GH-19873)Raymond Hettinger2020-05-021-76/+7
* Fix missing space in docs(GH-19866)Mathieu Dupuy2020-05-021-1/+1
* bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)Raymond Hettinger2020-05-024-1/+10
* bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers ...Sander2020-05-022-2/+4
* Call $(MKDIR_P) before regenerating the PEG meta-parser (GH-19861)Pablo Galindo2020-05-021-0/+1
* bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)Serhiy Storchaka2020-05-025-7/+9
* bpo-40334: regenerate metaparser as part of regen-all (GH-19854)Pablo Galindo2020-05-022-3/+12
* Fix some scripts in the peg generator folder (GH-19853)Pablo Galindo2020-05-0210-31/+16064
* bpo-29587: Update gen.throw() to chain exceptions (#19823)Chris Jerdonek2020-05-013-0/+27
* bpo-40417: Fix deprecation warning in PyImport_ReloadModule (GH-19750)Robert Rouhani2020-05-012-7/+8
* bpo-40334: use the TOKENS file when checking dangling rules (GH-19849)Pablo Galindo2020-05-015-15/+31
* Fix the Tools/peg_generator/scripts/benchmark.py script (GH-19848)Pablo Galindo2020-05-012-3/+4
* bpo-39435: Fix docs for pickle.loads (GH-18160)Shantanu2020-05-013-2/+4
* bpo-40412: Nullify inittab_copy during finalization (GH-19746)Gregory Szorc2020-05-012-0/+2
* bpo-39691: Clarify io.open_code behavior (GH-19824)Shantanu2020-05-011-4/+5
* Simplify choice()'s interaction with the private _randbelow() method (GH-19831)Raymond Hettinger2020-05-012-12/+8
* bpo-40334: Make the PyPegen* and PyParser* APIs more consistent (GH-19839)Lysandros Nikolaou2020-05-013-106/+36
* Ensure that tok->type_comments is set on every path (GH-19828)Guido van Rossum2020-05-011-3/+2
* bpo-40334: Refactor lambda_parameters similar to parameters (GH-19830)Guido van Rossum2020-05-012-1065/+1167
* bpo-40334: Correct return value of func_type_comment (GH-19833)Pablo Galindo2020-05-012-4/+4
* 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-016-111/+79
* bpo-40462: fix variable and function names (GH-19832)Furkan Önder2020-05-013-4/+2
* bpo-32494: Use gdbm_count for dbm_length if possible (GH-19814)Dong-hee Na2020-05-012-5/+27
* bpo-40334: Simplify type handling in the PEG c_generator (GH-19818)Pablo Galindo2020-05-013-401/+391