summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-37500: Revert commit 85ed1712e428f93408f56fc684816f9a85b0ebc0 (GH-1...Pablo Galindo2019-07-081-14/+0
* bpo-37463: match_hostname requires quad-dotted IPv4 (GH-14499)Christian Heimes2019-07-022-10/+28
* bpo-34602: Avoid failures setting macOS stack resource limit (GH-14546)Miss Islington (bot)2019-07-021-16/+0
* [3.7] bpo-37440: Enable TLS 1.3 post-handshake auth in http.client (GH-14448)...Miss Islington (bot)2019-07-012-0/+25
* [3.7] bpo-37428: Don't set PHA verify flag on client side (GH-14421) (GH-14493)Miss Islington (bot)2019-07-011-0/+31
* bpo-37369: Fix venv and test symlinking (GH-14456)Steve Dower2019-07-014-47/+96
* bpo-37369: Fixes path for sys.executable when running from the Microsoft Stor...Steve Dower2019-07-013-14/+3
* [3.7] bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304) ...Miss Islington (bot)2019-07-011-0/+25
* 3.7.4rc1v3.7.4rc1Ned Deily2019-06-181-61/+64
* bpo-34903: Document that some strptime formats only require 1 digit (GH-14149)Miss Islington (bot)2019-06-181-0/+35
* bpo-35031: also disable TLS 1.3 for test_start_tls_server_1 on macOS (GH-1418...Miss Islington (bot)2019-06-181-2/+4
* bpo-5680: IDLE: Customize running a module (GH-13763)Miss Islington (bot)2019-06-179-50/+193
* bpo-37321: Edit IDLE subprocess connection error messages. (GH-14170)Miss Islington (bot)2019-06-173-9/+14
* bpo-37039: Make IDLE's Zoom Height adjust to users' screens (GH-13678)Miss Islington (bot)2019-06-173-28/+117
* bpo-35031, test_asycio: disable TLS 1.3 in test_start_tls_server_1() (GH-14148)Miss Islington (bot)2019-06-171-0/+6
* bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051) ...Miss Islington (bot)2019-06-171-0/+9
* 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