summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-41288: Fix a crash in unpickling invalid NEWOBJ_EX. (GH-21458)Serhiy Storchaka2020-07-131-0/+18
* Fix error in docstrings in bisect module (GH-21422)Sergey Golitsynskiy2020-07-111-2/+2
* bpo-36346: Make using the legacy Unicode C API optional (GH-21437)Serhiy Storchaka2020-07-105-2/+21
* bpo-37765: Add keywords to IDLE tab completions (GH-15138)Terry Jan Reedy2020-07-094-41/+60
* bpo-41172: Fix check for compiler in test suite (GH-21400)Steve Dower2020-07-091-1/+7
* bpo-29590: fix stack trace for gen.throw() with yield from (#19896)Chris Jerdonek2020-07-091-0/+49
* bpo-40275: Use new test.support helper submodules in tests (GH-21412)Hai Shi2020-07-0918-134/+154
* bpo-40597: Allow email.contextmanager set_content() to set a null string. (GH...Mark Sapiro2020-07-082-1/+14
* Add a test for get_id() (GH-21370)Joannah Nanjekye2020-07-071-0/+7
* bpo-41224: Document is_annotated() in symtable module and update doc strings ...Joannah Nanjekye2020-07-071-2/+76
* bpo-29778: test_embed tests the path configuration (GH-21306)Victor Stinner2020-07-081-15/+67
* bpo-41207 In distutils.spawn, rewrite FileNotFound (GH-21359)Jason R. Coombs2020-07-072-3/+14
* bpo-41218: Improve the test cases for test_compile_top_level_await_no_coro (G...Pablo Galindo2020-07-061-3/+5
* bpo-41218: Only mark async code with CO_COROUTINE. (#21357)Matthias Bussonnier2020-07-061-0/+19
* bpo-29778: Ensure python3.dll is loaded from correct locations when Python is...Steve Dower2020-07-061-7/+24
* bpo-40275: Use new test.support helper submodules in tests (GH-21317)Hai Shi2020-07-0618-110/+128
* bpo-40275: Use new test.support helper submodules in tests (GH-21315)Hai Shi2020-07-0620-49/+69
* bpo-40275: Use new test.support helper submodules in tests (GH-21314)Hai Shi2020-07-0619-194/+225
* bpo-29727: Register array.array as a MutableSequence (GH-21338)Pablo Galindo2020-07-051-0/+66
* bpo-39168: Remove the __new__ method of typing.Generic (GH-21327)Zackery Spytz2020-07-042-12/+0
* bpo-41162: Clear audit hooks later during finalization (GH-21222)Konge2020-07-032-42/+0
* bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...scoder2020-07-021-0/+8
* bpo-41193: Ignore OSError in readline write_history() (GH-21279)Victor Stinner2020-07-021-3/+3
* bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all...Rémi Lapeyre2020-07-012-75/+1
* bpo-39385: Add an assertNoLogs context manager to unittest.TestCase (GH-18067)Kit Choi2020-07-013-8/+107
* bpo-39314: Closes parenthesis when autocompleting for functions that take no ...Rémi Lapeyre2020-06-302-5/+12
* bpo-40275: Use new test.support helper submodules in tests (GH-21169)Hai Shi2020-06-3014-319/+348
* bpo-40275: Use new test.support helper submodules in tests (GH-21219)Hai Shi2020-06-3016-94/+116
* bpo-41142: Add support of non-ASCII paths for CAB files. (GH-21195)Serhiy Storchaka2020-06-301-0/+10
* bpo-41158: IDLE: rewrite the code for handling file encoding (GH-21215)Serhiy Storchaka2020-06-301-152/+41
* bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933)Inada Naoki2020-06-301-1/+3
* bpo-36346: Prepare for removing the legacy Unicode C API (AC only). (GH-21223)Serhiy Storchaka2020-06-301-3/+16
* bpo-41152: IDLE: always use UTF-8 for standard IO streams (GH-21214)Serhiy Storchaka2020-06-294-52/+8
* bpo-23427: Add sys.orig_argv attribute (GH-20729)Victor Stinner2020-06-302-20/+40
* bpo-40924: Ensure importlib.resources.path returns an extant path (GH-20857)Jason R. Coombs2020-06-292-1/+21
* bpo-41004: Resolve hash collisions for IPv4Interface and IPv6Interface (GH-21...Ravi Teja P2020-06-292-2/+14
* bpo-41048: mimetypes should read the rule file using UTF-8, not the locale en...Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2020-06-292-1/+13
* bpo-41138: Fix trace CLI for non-UTF-8 files. (GH-21177)Serhiy Storchaka2020-06-282-16/+25
* bpo-31082: Use "iterable" in the docstring for functools.reduce() (GH-20796)Zackery Spytz2020-06-281-7/+8
* bpo-41144: Fix IDLE open module error (#21182)E-Paine2020-06-283-7/+19
* bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#21021)Guido van Rossum2020-06-271-0/+21
* bpo-40769: Allow extra surrounding parentheses for invalid annotated assignme...Batuhan Taskaya2020-06-271-0/+13
* bpo-41084: Adjust message when an f-string expression causes a SyntaxError (G...Lysandros Nikolaou2020-06-261-3/+7
* Improve code organization for the random module (GH-21161)Raymond Hettinger2020-06-251-177/+176
* bpo-40275: Use new test.support helper submodules in tests (GH-21151)Hai Shi2020-06-2520-42/+69
* bpo-41069: Make TESTFN and the CWD for tests containing non-ascii characters....Serhiy Storchaka2020-06-2522-59/+90
* bpo-40275: Use new test.support helper submodules in tests (GH-20824)Hai Shi2020-06-259-21/+29
* bpo-41113: Fix test_warnings on non-Western locales. (GH-21143)Serhiy Storchaka2020-06-251-3/+3
* bpo-41112: Fix test_peg_generator on non-UTF-8 locales. (GH-21138)Serhiy Storchaka2020-06-251-2/+2
* bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)Serhiy Storchaka2020-06-251-1/+1