aboutsummaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-43231: Correctly calculate the curses color pair limit when checking for ...Pablo Galindo2021-02-151-1/+1
* bpo-43231: Fix test.test_curses.TestCurses.test_init_pair when running under ...Pablo Galindo2021-02-151-0/+7
* bpo-42967: Fix urllib.parse docs and make logic clearer (GH-24536)Ken Jin2021-02-151-2/+1
* bpo-42967: only use '&' as a query string separator (#24297)Adam Goldschmidt2021-02-144-41/+99
* bpo-43202: More codeop._maybe_compile clean-ups (GH-24512)Terry Jan Reedy2021-02-131-7/+7
* bpo-43172: readline now passes its tests when built against libedit (GH-24499)Gregory P. Smith2021-02-121-2/+19
* bpo-43202: Immediately return code object in codeop._maybe_compile (GH-24508)Terry Jan Reedy2021-02-111-4/+2
* bpo-40956: Fix segfault when Connection.backup is called without target (GH-2...Erlend Egeberg Aasland2021-02-111-1/+3
* bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)Inada Naoki2021-02-101-0/+11
* bpo-43163: Handle unclosed parentheses in codeop (GH-24483)Pablo Galindo2021-02-092-1/+14
* bpo-43162: [Enum] deprecate enum member.member access (GH-24486)Ethan Furman2021-02-082-4/+37
* bpo-40692: Run more test_concurrent_futures tests (GH-20239)Asheesh Laroia2021-02-085-10/+48
* bpo-43147: Remove archaic terminology. (GH-24462)Raymond Hettinger2021-02-071-4/+3
* bpo-43149: Improve error message for exception group without parentheses (GH-...Pablo Galindo2021-02-071-0/+33
* Fix a typo in a deprecation warning (GH-24423)Zackery Spytz2021-02-051-1/+1
* Reduce overhead on random timings (GH-24455)Raymond Hettinger2021-02-041-1/+1
* bpo-43102: Set namedtuple __new__'s internal builtins to a dict. (GH-24439)Raymond Hettinger2021-02-042-1/+6
* bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436)Pablo Galindo2021-02-031-2/+18
* Fix typo (GH-23019)Harry2021-02-031-1/+1
* Fix Sphynx syntax in the memory.rst documentv3.10.0a5Pablo Galindo2021-02-021-8/+42
* bpo-41149: Fix a bug in threading that causes fals-y threads callables to fai...BarneyStratford2021-02-022-1/+21
* bpo-42997: Improve error message for missing : before suites (GH-24292)Pablo Galindo2021-02-021-3/+104
* Only eliminate jumps to successor block if jump is unconditional. (GH-24417)Mark Shannon2021-02-021-0/+16
* bpo-41748: Handles unquoted attributes with commas (#24072)Karl Dubost2021-02-012-37/+57
* bpo-38307: Add end_lineno attribute to pyclbr Objects (GH-24348)Aviral Srivastava2021-02-013-35/+45
* Fix typo in Lib/trace.py (GH-24309)Yonatan Goldschmidt2021-02-011-1/+1
* 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