aboutsummaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-42504: Ensure that get_config_var('MACOSX_DEPLOYMENT_TARGET') is a string...Ronald Oussoren2021-01-314-5/+17
* bpo-43017: Improve error message for unparenthesised tuples in comprehensions...Pablo Galindo2021-01-312-1/+17
* bpo-42986: Fix parser crash when reporting syntax errors in f-string with new...Pablo Galindo2021-01-311-0/+3
* bpo-43016: Fix test_curses on platform without cursesw (GH-24405)Serhiy Storchaka2021-01-311-5/+23
* bpo-43016: Rewrite tests for curses (GH-24312)Serhiy Storchaka2021-01-311-215/+787
* bpo-43077: Update bundled pip to 21.0.1 and setuptools to 52.0.0 (GH-24386)Paul Moore2021-01-305-3/+3
* bpo-41282: Add deprecation warning and docs for distutils (PEP 632) (GH-24355)Steve Dower2021-01-291-0/+6
* bpo-43008: Add 'Patch by Ken Hilton' (GH-24370)Terry Jan Reedy2021-01-291-1/+1
* bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...Mark Shannon2021-01-291-1/+1
* bpo-23544: Disable IDLE Stack Viewer when running user code (GH-17163)Zackery Spytz2021-01-285-5/+35
* bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)Victor Stinner2021-01-271-32/+65
* bpo-43008: Make IDLE respect sys.excepthook (GH-24302)Ken2021-01-263-12/+61
* bpo-38250: [Enum] only include .rst test if file available (GH-24342)Ethan Furman2021-01-261-4/+6
* bpo-38250: [Enum] single-bit flags are canonical (GH-24215)Ethan Furman2021-01-255-258/+606
* bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)Victor Stinner2021-01-253-4/+4
* bpo-42383: pdb: do not fail to restart the target if the current directory ch...Andrey Bienkowski2021-01-251-0/+23
* bpo-37319: Improve documentation, code and tests of randrange. (GH-19112)Serhiy Storchaka2021-01-252-27/+36
* bpo-42869: Avoid an HTTP redirection. (GH-24174)Julien Palard2021-01-251-1/+1
* bpo-42955: Add sys.modules_names (GH-24238)Victor Stinner2021-01-253-6/+24
* bpo-43013: Fix old tkinter module names in idlelib (GH-24326)Terry Jan Reedy2021-01-2513-67/+66
* bpo-27772: Make preceding width with 0 valid in string format. (GH-11270)Serhiy Storchaka2021-01-251-0/+6
* bpo-43013: Update idlelib code to 3.x (GH-24315)Terry Jan Reedy2021-01-2410-47/+49
* bpo-43014: Improve performance of tokenize.tokenize by 20-30%Anthony Sottile2021-01-241-0/+2
* closes bpo-43011: Fix DeprecationWarnings in test_ctypes (GH-24305)Zackery Spytz2021-01-231-2/+2
* bpo-42384: pdb: correctly populate sys.path[0] (GH-23338)Andrey Bienkowski2021-01-212-1/+44
* bpo-33289: Return RGB triplet of ints instead of floats from tkinter.colorcho...Cheryl Sabella2021-01-214-29/+91
* bpo-40176: Improve error messages for unclosed string literals (GH-19346)Batuhan Taskaya2021-01-203-14/+16
* bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)Victor Stinner2021-01-202-33/+150
* bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (GH-24172)cptpcrd2021-01-201-0/+27
* bpo-42005: profile and cProfile catch BrokenPipeError (GH-22643)Zhiming Wang2021-01-202-2/+12
* bpo-42864: Improve error messages regarding unclosed parentheses (GH-24161)Pablo Galindo2021-01-194-4/+11
* bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)Victor Stinner2021-01-192-12/+21
* bpo-41818: Close file descriptors in test_openpty (#GH-24119)Petr Viktorin2021-01-191-10/+10
* closes bpo-42938: Replace snprintf with Python unicode formatting in ctypes p...Benjamin Peterson2021-01-181-0/+43
* bpo-42923: Dump extension modules on fatal error (GH-24207)Victor Stinner2021-01-182-0/+29
* bpo-42944 Fix Random.sample when counts is not None (GH-24235)jonanifranco2021-01-182-28/+28
* bpo-42923: Add Py_FatalError() test in test_capi (GH-24240)Victor Stinner2021-01-182-16/+23
* bpo-42931: randbytes missing from random.__all__ (GH-24219)Setrak Balian2021-01-151-0/+1
* bpo-42934: use TracebackException(compact=True) in unittest.TestResult (GH-24...Irit Katriel2021-01-151-1/+2
* Mark instructions at end of class scope as artificial. (GH-24222)Mark Shannon2021-01-151-0/+18
* bpo-42877: add the 'compact' param to TracebackException's __init__ (#24179)Irit Katriel2021-01-142-9/+56
* bpo-42827: Fix crash on SyntaxError in multiline expressions (GH-24140)Lysandros Nikolaou2021-01-141-0/+3
* bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208)Tobias Holl2021-01-131-0/+10
* bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)Mark Shannon2021-01-132-1/+41
* bpo-42901: [Enum] move member creation to `__set_name__` (GH-24196)Ethan Furman2021-01-123-110/+204
* bpo-37324: Remove ABC aliases from collections (GH-23754)Hugo van Kemenade2021-01-131-16/+0
* bpo-42848: remove recursion from TracebackException (GH-24158)Irit Katriel2021-01-122-46/+94
* bpo-42882: Add test_embed.test_unicode_id_init() (GH-24198)Victor Stinner2021-01-121-0/+6
* Fix various ParamSpec errors in typing (GH-24176)Ken Jin2021-01-101-1/+1
* bpo-33065: Fix problem debugging user classes with __repr__ method (GH-24183)Terry Jan Reedy2021-01-103-3/+19