summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-39481: Fix duplicate SimpleQueue type in test_genericalias.py (GH-22619)Saiyang Gou2020-10-091-2/+2
* bpo-41831: Restore str implementation of __str__ in tkinter.EventType (GH-22355)Serhiy Storchaka2020-10-091-3/+2
* bpo-41831: Add tests for tkinter.Event.__repr__ (GH-22354)Serhiy Storchaka2020-10-091-0/+48
* bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)Serhiy Storchaka2020-10-091-10/+52
* bpo-41979: Accept star-unpacking on with-item targets (GH-22611)Batuhan Taskaya2020-10-091-1/+7
* bpo-39337: Add a test case for normalizing of codec names (GH-19069)Hai Shi2020-10-081-0/+25
* bpo-41976: Fix the fallback to gcc of ctypes.util.find_library when using gcc...Pablo Galindo2020-10-082-7/+35
* bpo-41306: Allow scale value to not be rounded (GH-21715)E-Paine2020-10-081-1/+2
* bpo-41970: Avoid test failure in test_lib2to3 if the module is already import...Pablo Galindo2020-10-081-1/+2
* Revert "bpo-26680: Incorporate is_integer in all built-in and standard librar...Raymond Hettinger2020-10-078-138/+1
* bpo-41923: PEP 613: Add TypeAlias to typing module (#22532)Mikhail Golubev2020-10-072-0/+56
* bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)Batuhan Taskaya2020-10-0621-256/+378
* bpo-41905: Add abc.update_abstractmethods() (GH-22485)Ben Avrahami2020-10-064-0/+227
* bpo-41944: No longer call eval() on content received via HTTP in the UnicodeN...Florian Bruhin2020-10-061-1/+2
* bpo-41944: No longer call eval() on content received via HTTP in the CJK code...Serhiy Storchaka2020-10-061-14/+8
* Python 3.10.0a1v3.10.0a1Pablo Galindo2020-10-051-524/+610
* bpo-41939: Fix test_site.test_license_exists_at_url() (#22559)Victor Stinner2020-10-051-0/+2
* bpo-41909: Enable previously disabled recursion checks. (GH-22536)Serhiy Storchaka2020-10-041-0/+10
* bpo-41490: Bump vendored pip to version 20.2.3 (#22527)Pablo Galindo2020-10-042-17/+14
* Delete extra 'the' from `Formatter` class docstring (GH-22530)Hansraj Das2020-10-041-1/+1
* bpo-41887: omit leading spaces/tabs on ast.literal_eval (#22469)Batuhan Taskaya2020-10-042-1/+7
* bpo-41840: Report module-level globals as both local and global in the symtab...Pablo Galindo2020-10-032-9/+28
* bpo-40564: Avoid copying state from extant ZipFile. (GH-22371)Jason R. Coombs2020-10-032-6/+50
* bpo-41826: Fix compiler warnings in test_peg_generator (GH-22455)Pablo Galindo2020-10-031-16/+17
* bpo-41867: List options for timespec in docstrings of isoformat methods (GH-2...Ram Rachum2020-10-031-2/+4
* bpo-40833: Clarify Path.rename doc-string regarding relative paths (GH-20554)Ram Rachum2020-10-031-5/+14
* bpo-41900: C14N 2.0 serialisation failed for unprefixed attributes when a def...scoder2020-10-032-0/+13
* Typo fix - "mesasge" should be "message" (GH-22498)Hansraj Das2020-10-021-2/+2
* bpo-26680: Incorporate is_integer in all built-in and standard library numeri...Robert Smallshire2020-10-018-1/+138
* bpo-41670: Remove outdated predict macro invocation. (GH-22026)Mark Shannon2020-09-291-0/+17
* bpo-41773: Raise exception for non-finite weights in random.choices(). (GH-2...Ram Rachum2020-09-292-1/+19
* bpo-41873: Add vectorcall for float() (GH-22432)Dennis Sweeney2020-09-291-0/+3
* bpo-41842: Add codecs.unregister() function (GH-22360)Hai Shi2020-09-281-0/+12
* bpo-40105: ZipFile truncate in append mode with shorter comment (GH-19337)Jan Mazur2020-09-282-0/+5
* Revert "Fix all Python Cookbook links (#22205)" (GH-22424)Andre Delfino2020-09-273-3/+3
* Fix logging error message (GH-22410)Eric Larson2020-09-252-14/+22
* bpo-39934: Account for control blocks in 'except' in compiler. (GH-22395)Mark Shannon2020-09-251-0/+9
* bpo-41775: Make 'IDLE Shell' the shell title (#22399)Terry Jan Reedy2020-09-242-1/+3
* bpo-41833: threading.Thread now uses the target name (GH-22357)Victor Stinner2020-09-232-8/+46
* bpo-30155: Add macros to get tzinfo from datetime instances (GH-21633)Zackery Spytz2020-09-231-4/+10
* bpo-41841: Prepare IDLE News for 3.10 (GH-22379)Terry Jan Reedy2020-09-231-2/+7
* bpo-41816: `StrEnum.__str__` is `str.__str__` (GH-22362)Ethan Furman2020-09-222-0/+33
* bpo-35764: Rewrite the IDLE Calltips doc section (GH-22363)Terry Jan Reedy2020-09-222-20/+25
* bpo-41810: Reintroduce `types.EllipsisType`, `.NoneType` & `.NotImplementedTy...Bas van Beek2020-09-222-0/+13
* bpo-41602: raise SIGINT exit code on KeyboardInterrupt from pymain_run_module...Thomas Grainger2020-09-221-7/+87
* bpo-41817: use new StrEnum to ensure all members are strings (GH-22348)Ethan Furman2020-09-221-7/+7
* bpo-40670: More reliable validation of statements in timeit.Timer. (GH-22358)Serhiy Storchaka2020-09-222-0/+10
* bpo-40181: Remove '/' reminder in IDLE calltips. (GH-22350)Terry Jan Reedy2020-09-223-9/+6
* bpo-41816: add `StrEnum` (GH-22337)Ethan Furman2020-09-222-22/+64
* bpo-40084: Enum - dir() includes member attributes (GH-19219)Angelin BOOZ2020-09-213-2/+18