summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-36688: Adding an implementation of RLock in _dummy_thread (GH-12943)Miss Islington (bot)2019-06-172-1/+52
* bpo-37220: Fix 2.7 test -R crash on Windows. (GH-13957)Miss Islington (bot)2019-06-161-2/+2
* bpo-35922: Fix RobotFileParser when robots.txt has no relevant crawl delay or...Miss Islington (bot)2019-06-162-14/+22
* Fix typo in Lib/concurrent/futures/thread.py (GH-13953)Miss Islington (bot)2019-06-152-2/+2
* [3.7] bpo-37279: Fix asyncio sendfile support when extra data are sent in fa...Andrew Svetlov2019-06-152-3/+4
* Use threadpool for reading from file in sendfile fallback mode (GH-14076)Miss Islington (bot)2019-06-151-1/+1
* bpo-19865: ctypes.create_unicode_buffer() supports non-BMP strings on Windows...Miss Islington (bot)2019-06-142-1/+18
* bpo-35998: Avoid TimeoutError in test_asyncio: test_start_tls_server_1() (GH-...Victor Stinner2019-06-141-18/+19
* [3.7] bpo-37269: Correctly optimise conditionals with constant booleans (GH-1...Pablo Galindo2019-06-141-0/+7
* bpo-36402: Fix threading._shutdown() race condition (GH-13948) (GH-14050) (GH...Miss Islington (bot)2019-06-132-12/+116
* bpo-31829: Make protocol 0 pickles be loadable in text mode in Python 2. (GH-...Miss Islington (bot)2019-06-122-4/+18
* [3.7] bpo-36520: Email header folded incorrectly (GH-13608) (GH-13910)Abhilash Raj2019-06-112-0/+132
* Fix test_posix if RWF_HIPRI is defined but not preadv2. (GH-13980)Miss Islington (bot)2019-06-111-0/+2
* closes bpo-33758: Skip test_get_type_hints_modules_forwardref. (GH-13977)Miss Islington (bot)2019-06-111-2/+2
* bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)Miss Islington (bot)2019-06-111-6/+32
* [3.7] bpo-37219: Remove erroneous optimization for differencing an empty set ...Raymond Hettinger2019-06-111-0/+6
* bpo-37173: Show passed class in inspect.getfile error (GH-13861)Miss Islington (bot)2019-06-082-3/+21
* bpo-34886: Fix subprocess.run handling of exclusive arguments (GH-11727)Miss Islington (bot)2019-06-081-2/+2
* Use assertEqual(). (#13886)Miss Islington (bot)2019-06-071-2/+2
* IDLE: Standardize naming convention for DummyEditwin in tests (GH-13876)Miss Islington (bot)2019-06-071-2/+2
* bpo-37188: Fix a divide-by-zero in arrays of size-0 objects (GH-13881) (#13882)Miss Islington (bot)2019-06-071-0/+15
* bpo-37177: make IDLE's search dialogs transient (GH-13869)Miss Islington (bot)2019-06-062-5/+8
* bpo-21315: Fix parsing of encoded words with missing leading ws. (GH-13425) (...Miss Islington (bot)2019-06-063-3/+45
* Don't report deleted attributes in __dir__ (GHGH-10148)Miss Islington (bot)2019-06-062-2/+13
* bpo-30835: email: Fix AttributeError when parsing invalid CTE (GH-13598)Miss Islington (bot)2019-06-052-1/+10
* bpo-35763: Make IDLE calltip note about '/' less obtrusive (GH-13791)Miss Islington (bot)2019-06-042-61/+67
* bpo-37153: test_venv.test_mutiprocessing() calls pool.terminate() (GH-13816) ...Miss Islington (bot)2019-06-041-2/+4
* bpo-36742: Corrects fix to handle decomposition in usernames (GH-13812)Miss Islington (bot)2019-06-042-8/+9
* IDLE: Fix typos in docs and comments (GH-13749)Miss Islington (bot)2019-06-0211-11/+11
* bpo-37014: Update docstring and Documentation of fileinput.FileInput(). (GH-1...Miss Islington (bot)2019-06-021-3/+3
* bpo-35610: IDLE - Replace .context_use_ps1 with .prompt_last_line (GH-11307)Miss Islington (bot)2019-06-027-13/+11
* bpo-32411: IDLE: Remove line number sort in browser.py (GH-5011)Miss Islington (bot)2019-06-013-17/+20
* bpo-36813: Fix QueueListener to call task_done() upon termination. (GH-13113)Miss Islington (bot)2019-06-012-0/+12
* bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278)Miss Islington (bot)2019-05-312-0/+31
* bpo-12639: msilib.Directory.start_component() fails if *keyfile* is not None ...Miss Islington (bot)2019-05-312-1/+10
* IDLE - Capitalize search dialogs' 'Close' button label. (GH-13691)Miss Islington (bot)2019-05-312-2/+3
* bpo-24564: shutil.copystat(): ignore EINVAL on os.setxattr() (GH-13369)Miss Islington (bot)2019-05-301-2/+3
* [3.7] bpo-36983: Fix typing.__all__ and add test for exported names (GH-13456...Anthony Sottile2019-05-292-0/+27
* bpo-26903: Limit ProcessPoolExecutor to 61 workers on Windows (GH-13132) (GH-...Miss Islington (bot)2019-05-282-0/+21
* bpo-22102: Fixes zip files with disks set to 0 (GH-5985)Miss Islington (bot)2019-05-281-1/+1
* bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)Miss Islington (bot)2019-05-281-0/+4
* bpo-37054, _pyio: Fix BytesIO and TextIOWrapper __del__() (GH-13601)Miss Islington (bot)2019-05-271-1/+10
* bpo-37039: IDLE - zoomheight fixes (GH-13576)Miss Islington (bot)2019-05-272-25/+13
* [3.7] bpo-37035: Don't log OSError (GH-13548) (#13594)Andrew Svetlov2019-05-277-16/+30
* BPO-27639: Correct return type for UserList slicing operation (#13203)Michael Blahay2019-05-262-1/+11
* bpo-37038: Make idlelib.run runnable; add test clause (GH-13560)Miss Islington (bot)2019-05-242-8/+24
* bpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not hand...Miss Islington (bot)2019-05-241-0/+35
* bpo-37008: make mock_open handle able to honor next() (GH-13492)Miss Islington (bot)2019-05-233-0/+34
* bpo-27737: Allow whitespace only headers encoding (GH-13478) (#13517)Miss Islington (bot)2019-05-222-1/+4
* bpo-33110: Catch errors raised when running add_done_callback on already comp...Miss Islington (bot)2019-05-222-1/+20