summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-36919: make test_source_encoding.test_issue2301 implementation-independen...Pavel Koneski2019-09-111-1/+1
* closes bpo-37252: Fix devpoll tests. (GH-14017)Jakub Kulík2019-09-111-3/+3
* bpo-37305: add MIME type for Web App Manifest (#14199)Filip Š2019-09-111-0/+1
* bpo-31163: Added return values to pathlib.Path instance's rename and replace ...hui shang2019-09-112-6/+14
* bpo-34519: Add additional aliases for HP Roman 8 (GH-8956)Michael Osipov2019-09-111-0/+2
* bpo-38107: Replace direct future and task contructor calls with factories in ...Andrew Svetlov2019-09-1113-159/+156
* bpo-35640: Allow passing PathLike arguments to SimpleHTTPRequestHandler (GH-1...Géry Ogam2019-09-112-24/+75
* bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (#10...Pierre Quentel2019-09-112-3/+22
* bpo-35168: Make shlex.punctuation_chars read-only (#11631)Alex2019-09-112-1/+12
* bpo-35066: Make trailing percent test more portable. (GH-15907)Benjamin Peterson2019-09-111-4/+9
* bpo-37409: fix relative import with no parent (#14956)Ben Lewis2019-09-112-0/+9
* bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899)Steve Dower2019-09-112-6/+11
* bpo-37936: Systematically distinguish rooted vs. unrooted in .gitignore (GH-1...Greg Price2019-09-111-3/+1
* bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490)Gregory P. Smith2019-09-112-9/+48
* bpo-37879: Suppress subtype_dealloc decref when base type is a C heap type (G...Eddie Elizondo2019-09-111-0/+86
* bpo-36373: Fix deprecation warnings (GH-15889)Andrew Svetlov2019-09-115-12/+12
* bpo-28494: Test existing zipfile working behavior. (GH-15853)Gregory P. Smith2019-09-106-0/+101
* bpo-32424: Deprecate xml.etree.ElementTree.Element.copy() in favor of copy.co...Gordon P. Hemsley2019-09-102-0/+36
* bpo-36253: Remove use after free reference in ctypes test suite (GH-12257)Ben Harper2019-09-101-2/+2
* bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840)Jason R. Coombs2019-09-104-33/+82
* bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850)Steve Dower2019-09-102-107/+124
* bpo-38088: Fixes distutils not finding vcruntime140.dll with only v142 toolse...Steve Dower2019-09-101-1/+1
* Fix subprocess docstring typo (GH-15812)Matthias2019-09-101-1/+1
* bpo-36781: Optimize sum() for bools. (#13074)Serhiy Storchaka2019-09-101-0/+21
* bpo-38066: Hide internal Stream methods (GH-15762)Andrew Svetlov2019-09-104-92/+153
* closes bpo-25461: Update os.walk() docstring to match the online docs. (GH-11...Bernt Røskar Brenna2019-09-101-4/+5
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queu...Emmanuel Arias2019-09-101-0/+4
* bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong ...Jeroen Demeyer2019-09-101-0/+12
* bpo-37499: Test various C calling conventions (GH-15776)Petr Viktorin2019-09-102-195/+271
* bpo-37251: Removes __code__ check from _is_async_obj. (GH-15830)Lisa Roach2019-09-102-3/+17
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [loc...Emmanuel Arias2019-09-106-265/+401
* Skip zoneinfo tests on VxWorks (#13535)hliu02019-09-101-0/+2
* bpo-38076: Make struct module PEP-384 compatible (#15805)Dino Viehland2019-09-101-0/+4
* bpo-38043: Move unicodedata.normalize tests into test_unicodedata. (GH-15712)Greg Price2019-09-103-129/+102
* bpo-38018: Fix test for multiprocessing.shared_memory in BSD systems (GH-15821)Vinay Sharma2019-09-101-2/+7
* bpo-38077: IDLE no longer adds 'argv' to the user namespace (GH-15818)Terry Jan Reedy2019-09-092-1/+4
* bpo-38049: Add command-line interface for the ast module. (GH-15724)Serhiy Storchaka2019-09-091-0/+24
* bpo-38018: Increase code coverage for multiprocessing.shared_memory (GH-15662)Vinay Sharma2019-09-091-0/+24
* bpo-37995: Add an option to ast.dump() to produce a multiline output. (GH-15631)Serhiy Storchaka2019-09-092-11/+96
* bpo-37840: Fix handling of negative indices in bytearray_getitem() (GH-15250)Sergey Fedoseev2019-09-091-0/+9
* bpo-35941: Fix performance regression in new code (GH-12610)Christian Heimes2019-09-091-2/+2
* Fix punctuation in `os.execvpe` docstring. (GH-15051)Hasan Ramezani2019-09-091-1/+1
* bpo-35803: Document and test dir=PathLike for tempfile (GH-11644)Anthony Sottile2019-09-091-2/+14
* Clarify that shutil's copy functions can accept path-like values (GH-15141)Boris Verhovsky2019-09-091-1/+2
* bpo-36279: Ensure os.wait3() rusage is initialized (GH-15111)Zackery Spytz2019-09-091-0/+18
* bpo-37758: Cut always-constant conditionals on sys.maxunicode. (GH-15302)Greg Price2019-09-091-1/+1
* bpo-20490: Improve circular import error message (GH-15308)Anthony Sottile2019-09-093-0/+14
* bpo-38006: Avoid closure in weakref.WeakValueDictionary (GH-15641)Victor Stinner2019-09-092-2/+7
* bpo-37876: Tests for ROT-13 codec (GH-15314)Zeth2019-09-091-0/+37
* docs: Add references to AsyncMock in unittest.mock.patch (#13681)Mario Corchero2019-09-091-4/+5