summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (GH-...Miss Islington (bot)2019-09-112-3/+22
* bpo-35066: Make trailing percent test more portable. (GH-15907)Miss Islington (bot)2019-09-111-4/+9
* [3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913)Brett Cannon2019-09-112-0/+9
* bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899)Miss Islington (bot)2019-09-112-6/+11
* [3.8] bpo-36373: Fix deprecation warnings (GH-15889) (GH-15901)Andrew Svetlov2019-09-115-12/+12
* [3.8] bpo-37936: Systematically distinguish rooted vs. unrooted in .gitignore...Zachary Ware2019-09-111-3/+1
* bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490)Miss Islington (bot)2019-09-112-9/+48
* bpo-28494: Test existing zipfile working behavior. (GH-15853)Miss Islington (bot)2019-09-106-0/+101
* bpo-37531: Enhance regrtest multiprocess timeout (GH-15345) (GH-15871)Victor Stinner2019-09-101-18/+63
* [3.8] bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15...Jason R. Coombs2019-09-104-33/+82
* Fix subprocess docstring typo (GH-15812)Miss Islington (bot)2019-09-101-1/+1
* bpo-38088: Fixes distutils not finding vcruntime140.dll with only v142 toolse...Miss Islington (bot)2019-09-101-1/+1
* bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850)Steve Dower2019-09-102-107/+124
* bpo-38066: Hide internal Stream methods (GH-15762)Miss Islington (bot)2019-09-104-92/+153
* closes bpo-25461: Update os.walk() docstring to match the online docs. (GH-11...Miss Islington (bot)2019-09-101-4/+5
* bpo-37251: Removes __code__ check from _is_async_obj. (GH-15830)Miss Islington (bot)2019-09-102-3/+17
* docs: Add references to AsyncMock in unittest.mock.patch (GH-13681)Miss Islington (bot)2019-09-101-4/+5
* bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong ...Miss Islington (bot)2019-09-101-0/+12
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queu...Miss Islington (bot)2019-09-101-0/+4
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [lock...Miss Islington (bot)2019-09-106-265/+401
* bpo-35941: Fix performance regression in SSL certificate code (GH-12610)Steve Dower2019-09-101-2/+2
* bpo-38077: IDLE no longer adds 'argv' to the user namespace (GH-15818)Miss Islington (bot)2019-09-102-1/+4
* Fix punctuation in `os.execvpe` docstring. (GH-15051)Miss Islington (bot)2019-09-091-1/+1
* bpo-35803: Document and test dir=PathLike for tempfile (GH-11644)Miss Islington (bot)2019-09-091-2/+14
* Clarify that shutil's copy functions can accept path-like values (GH-15141)Miss Islington (bot)2019-09-091-1/+2
* bpo-20490: Improve circular import error message (GH-15308)Steve Dower2019-09-093-0/+14
* bpo-38006: Avoid closure in weakref.WeakValueDictionary (GH-15641)Miss Islington (bot)2019-09-092-2/+7
* bpo-37876: Tests for ROT-13 codec (GH-15314)Miss Islington (bot)2019-09-091-0/+37
* bpo-38059: Using sys.exit() over exit() in inspect.py (GH-15666)Miss Islington (bot)2019-09-091-2/+2
* bpo-34596: Fallback to a default reason when @unittest.skip is uncalled (GH-9...Miss Islington (bot)2019-09-092-0/+16
* bpo-37212: Preserve keyword argument order in unittest.mock.call and error me...Miss Islington (bot)2019-09-092-4/+4
* bpo-36250: ignore ValueError from signal in non-main thread (GH-12251)Miss Islington (bot)2019-09-092-2/+35
* bpo-11953: Extend table of Windows WSA* error codes (GH-15004)Steve Dower2019-09-091-1/+81
* bpo-32587: Make winreg.REG_MULTI_SZ support zero-length strings (GH-13239)Miss Islington (bot)2019-09-091-0/+1
* bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625)Miss Islington (bot)2019-09-091-0/+37
* [3.8] bpo-36018: Address more reviewer feedback (GH-15733) (GH-15734)Raymond Hettinger2019-09-092-25/+42
* bpo-38041: Refine IDLE Shell restart lines. (GH-15709)Miss Islington (bot)2019-09-063-3/+41
* bpo-37380: subprocess: don't use _active on win (GH-14360) (GH-15707)Miss Islington (bot)2019-09-062-25/+57
* bpo-36324: Apply review comments from Allen Downey (GH-15693) (GH-15694)Miss Islington (bot)2019-09-051-21/+17
* bpo-38026: fix inspect.getattr_static (GH-15676)Miss Islington (bot)2019-09-051-2/+2
* bpo-37902: IDLE: Add scrolling for IDLE browsers. (GH-15368)Miss Islington (bot)2019-09-055-21/+75
* [3.8] bpo-37764: Fix infinite loop when parsing unstructured email headers. (...Abhilash Raj2019-09-053-3/+53
* bpo-22347: Update mimetypes.guess_type to allow proper parsing of URLs (GH-15...Miss Islington (bot)2019-09-053-2/+11
* Fix idlelib.help comments (GH-15669)Miss Islington (bot)2019-09-051-24/+25
* bpo-38030: Fix os.stat failures on block devices on Windows (GH-15681)Miss Islington (bot)2019-09-041-0/+8
* closes bpo-37966: Fully implement the UAX GH-15 quick-check algorithm. (GH-15...Miss Islington (bot)2019-09-041-0/+2
* bpo-38022: IDLE: upgrade help.html to sphinx 2.x HTML5 output (GH-15664)Miss Islington (bot)2019-09-032-167/+229
* [3.8] bpo-21315: Fix parsing of encoded words with missing leading ws (GH-134...Ashwin Ramaswami2019-09-033-3/+45
* bpo-35771: IDLE: Fix flaky tool-tip hover delay tests (GH-15634)Miss Islington (bot)2019-09-033-48/+66
* bpo-38010 Sync importlib.metadata with importlib_metadata 0.20. (GH-15646) (G...Miss Islington (bot)2019-09-022-3/+17