summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15...Vinay Sharma2020-07-201-0/+7
* bpo-41338: Fix DeprecationWarning in tests (GH-21542)Inada Naoki2020-07-203-0/+11
* bpo-38169: Increase code coverage for SharedMemory and ShareableList (GH-16139)Vinay Sharma2020-07-191-0/+29
* bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)scoder2020-07-181-0/+36
* bpo-39603: Prevent header injection in http methods (GH-18485)AMIR2020-07-182-0/+37
* bpo-40941: Unify implicit and explicit state in the frame and generator objec...Mark Shannon2020-07-173-3/+6
* bpo-41195: Add getter for Openssl security level (GH-21282)matthewhughes9342020-07-171-0/+19
* bpo-41300: IDLE - save files with non-ascii chars (GH-21512)Terry Jan Reedy2020-07-162-0/+4
* bpo-31844: Remove _markupbase.ParserBase.error() (GH-8562)Berker Peksag2020-07-161-17/+18
* bpo-41304: Ensure python3x._pth is loaded on Windows (GH-21495)Steve Dower2020-07-151-2/+34
* bpo-39017: Avoid infinite loop in the tarfile module (GH-21454)Rishi2020-07-153-0/+9
* bpo-41273: asyncio's proactor read transport's better performance by using re...Tony Solomonik2020-07-142-46/+64
* 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-081-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-071-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-052-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-031-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-022-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-304-52/+8
* bpo-23427: Add sys.orig_argv attribute (GH-20729)Victor Stinner2020-06-292-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