summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-36511: Add buildbot scripts and fix tests for Windows ARM32 buildbot (GH-...Paul Monson2019-06-195-2/+20
* bpo-37258: Not a bug, but added a unit test and updated documentation. (GH-14...Vinay Sajip2019-06-191-0/+31
* bpo-37325: Fix focus traversal for 2 IDLE dialogs (#14209)Terry Jan Reedy2019-06-183-23/+41
* bpo-34903: Document that some strptime formats only require 1 digit (GH-14149)Mike Gleen2019-06-181-0/+35
* bpo-35031: also disable TLS 1.3 for test_start_tls_server_1 on macOS (GH-14188)Ned Deily2019-06-181-2/+4
* bpo-5680: IDLE: Customize running a module (GH-13763)Cheryl Sabella2019-06-179-50/+193
* Fix test_embed.test_pre_initialization_sys_options() env vars (GH-14172)Victor Stinner2019-06-181-6/+12
* bpo-37320: Remove openfp() of aifc, sunau and wave (GH-14169)Victor Stinner2019-06-188-52/+18
* bpo-37321: Edit IDLE subprocess connection error messages. (#14170)Terry Jan Reedy2019-06-173-9/+14
* bpo-37039: Make IDLE's Zoom Height adjust to users' screens (GH-13678)Tal Einat2019-06-173-28/+117
* bpo-34556: Add --upgrade-deps to venv module (#13100)Cooper Lees2019-06-172-6/+52
* bpo-37111: Add 'encoding' and 'errors' parameters to logging.basicCon… (GH-...Vinay Sajip2019-06-173-18/+140
* bpo-35431: Test math.comb() and math.perm() for OverflowError only on CPython...Serhiy Storchaka2019-06-171-3/+5
* bpo-37315: Deprecate accepting floats in math.factorial(). (GH-14147)Serhiy Storchaka2019-06-171-7/+12
* bpo-37312: Remove _dummy_thread and dummy_threading modules (GH-14143)Victor Stinner2019-06-174-611/+0
* bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865)Jeroen Demeyer2019-06-171-0/+2
* bpo-35031, test_asycio: disable TLS 1.3 in test_start_tls_server_1() (GH-14148)Victor Stinner2019-06-171-0/+6
* bpo-36688: Adding an implementation of RLock in _dummy_thread (GH-12943)Joost Lek2019-06-172-1/+52
* bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051)Zackery Spytz2019-06-171-0/+9
* bpo-37220: Fix 2.7 test -R crash on Windows. (GH-13957)Terry Jan Reedy2019-06-161-2/+2
* bpo-35922: Fix RobotFileParser when robots.txt has no relevant crawl delay or...RĂ©mi Lapeyre2019-06-162-14/+22
* bpo-28009: Fix uuid SkipUnless logic to be based on platform programs capable...Michael Felt2019-06-162-19/+44
* Fix typo in Lib/concurrent/futures/thread.py (GH-13953)ubordignon2019-06-152-2/+2
* Use threadpool for reading from file in sendfile fallback mode (#14076)Andrew Svetlov2019-06-151-1/+1
* bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...Andrew Svetlov2019-06-152-3/+4
* bpo-35537: Rewrite setsid test for os.posix_spawn (GH-11721)Victor Stinner2019-06-142-21/+32
* bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049)Victor Stinner2019-06-143-29/+47
* bpo-37261: Document sys.unraisablehook corner cases (GH-14059)Victor Stinner2019-06-142-13/+8
* bpo-19865: ctypes.create_unicode_buffer() supports non-BMP strings on Windows...Zackery Spytz2019-06-142-1/+18
* bpo-35998: Avoid TimeoutError in test_asyncio: test_start_tls_server_1() (GH-...Andrew Svetlov2019-06-141-18/+19
* bpo-37278: Fix test_asyncio ProactorLoopCtrlC (GH-14074)Victor Stinner2019-06-141-7/+8
* bpo-37269: Correctly optimise conditionals with constant booleans (GH-14071)Pablo Galindo2019-06-141-0/+7
* bpo-37213: Handle negative line deltas correctly in the peephole optimizer (G...Pablo Galindo2019-06-131-1/+80
* bpo-37261: Fix support.catch_unraisable_exception() (GH-14052)Victor Stinner2019-06-131-2/+20
* bpo-37210: Fix pure Python pickle when _pickle is unavailable (GH-14016)Victor Stinner2019-06-132-32/+40
* tbpo-36402: Fix threading.Thread._stop() (GH-14047)Victor Stinner2019-06-132-1/+25
* bpo-36402: Fix threading._shutdown() race condition (GH-13948)Victor Stinner2019-06-132-12/+92
* bpo-37069: regrtest uses sys.unraisablehook (GH-13759)Victor Stinner2019-06-133-1/+50
* bpo-37223, test_io: silence last 'Exception ignored in:' (GH-14029)Victor Stinner2019-06-121-0/+5
* Make asyncio stream sendfile fail on error (was hang) (GH-14025)Andrew Svetlov2019-06-121-5/+8
* bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)Paul Monson2019-06-124-0/+10
* bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...Michael Felt2019-06-121-0/+2
* bpo-36918: Fix "Exception ignored in" in test_urllib (GH-13996)Victor Stinner2019-06-121-6/+15
* bpo-35766: compile(): rename feature_version parameter (GH-13994)Victor Stinner2019-06-122-3/+4
* bpo-35766: Change format for feature_version to (major, minor) (GH-13992)Guido van Rossum2019-06-111-1/+8
* Fix test_posix if RWF_HIPRI is defined but not preadv2. (GH-13980)Benjamin Peterson2019-06-111-0/+2
* closes bpo-33758: Skip test_get_type_hints_modules_forwardref. (GH-13977)Benjamin Peterson2019-06-111-2/+2
* bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)Andrew Svetlov2019-06-111-6/+32
* bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13...Raymond Hettinger2019-06-111-0/+6
* bpo-37223: test_io: silence destructor errors (GH-13954)Victor Stinner2019-06-111-0/+10