summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-37363: Add audit events for a range of modules (GH-14301)Miss Islington (bot)2019-06-2413-4/+44
* bpo-37359: Fix regrtest --cleanup (GH-14336)Miss Islington (bot)2019-06-241-1/+1
* bpo-37359: Add --cleanup option to python3 -m test (GH-14332) (GH-14334)Victor Stinner2019-06-243-14/+56
* Improve threading.daemon docstring (GH-14278)Miss Islington (bot)2019-06-231-2/+1
* bpo-35224: Bump the pyc magic number by 1 instead of by 10 in last modificati...Miss Islington (bot)2019-06-231-2/+2
* [3.8] bpo-35431: Test math.comb() and math.perm() for OverflowError only on C...Serhiy Storchaka2019-06-231-3/+5
* bpo-35224: Bump the pyc magic number after the change in MAP_ADD (GH-14313)Miss Islington (bot)2019-06-221-1/+3
* bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-...Miss Islington (bot)2019-06-223-0/+36
* bpo-37323: Suppress DeprecationWarning raised by @asyncio.coroutine (GH-14293)Miss Islington (bot)2019-06-221-1/+3
* bpo-37364: Use io.open_code() to read .pth files (GH-14299)Miss Islington (bot)2019-06-211-1/+2
* bpo-37362: test_gdb now ignores stderr (GH-14287)Miss Islington (bot)2019-06-211-34/+13
* bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)Steve Dower2019-06-212-0/+10
* Fix typo, 'widger' -> 'widget', in idlelib/tree.py (GH-14263) (#14270)Miss Islington (bot)2019-06-201-1/+1
* bpo-37258: Not a bug, but added a unit test and updated documentation. (GH-14...Miss Islington (bot)2019-06-191-0/+31
* bpo-37163: Deprecate passing argument obj of dataclasses.replace() by keyword...Serhiy Storchaka2019-06-192-1/+20
* bpo-37325: Fix focus traversal for 2 IDLE dialogs (GH-14209)Miss Islington (bot)2019-06-183-23/+41
* 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-14188)Miss Islington (bot)2019-06-181-2/+4
* bpo-5680: IDLE: Customize running a module (GH-13763)Miss Islington (bot)2019-06-189-50/+193
* Fix test_embed.test_pre_initialization_sys_options() env vars (GH-14172)Miss Islington (bot)2019-06-171-6/+12
* 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) (GH-14...Miss Islington (bot)2019-06-173-28/+117
* bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865)Miss Islington (bot)2019-06-171-0/+2
* 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
* bpo-28009: Fix uuid SkipUnless logic to be based on platform programs capable...Miss Islington (bot)2019-06-152-19/+44
* Fix typo in Lib/concurrent/futures/thread.py (GH-13953)Miss Islington (bot)2019-06-152-2/+2
* [3.8] Use threadpool for reading from file in sendfile fallback mode (GH-1407...Andrew Svetlov2019-06-151-1/+1
* bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...Miss Islington (bot)2019-06-152-3/+4
* bpo-35537: Rewrite setsid test for os.posix_spawn (GH-11721)Miss Islington (bot)2019-06-142-21/+32
* bpo-37261: Document sys.unraisablehook corner cases (GH-14059)Miss Islington (bot)2019-06-142-13/+8
* 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-...Miss Islington (bot)2019-06-141-18/+19
* bpo-37278: Fix test_asyncio ProactorLoopCtrlC (GH-14074)Miss Islington (bot)2019-06-141-7/+8
* bpo-37269: Correctly optimise conditionals with constant booleans (GH-14071)Miss Islington (bot)2019-06-141-0/+7
* bpo-37213: Handle negative line deltas correctly in the peephole optimizer (G...Miss Islington (bot)2019-06-131-1/+80
* bpo-37261: Fix support.catch_unraisable_exception() (GH-14052)Miss Islington (bot)2019-06-131-2/+20
* bpo-37210: Fix pure Python pickle when _pickle is unavailable (GH-14016)Miss Islington (bot)2019-06-132-32/+40
* [3.8] bpo-36402: Fix threading._shutdown() race condition (GH-13948) (GH-14050)Victor Stinner2019-06-132-12/+116
* bpo-37223: test_io: silence destructor errors (GH-14031)Victor Stinner2019-06-122-0/+25
* Make asyncio stream sendfile fail on error (was hang) (GH-14025)Miss Islington (bot)2019-06-121-5/+8
* bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)Miss Islington (bot)2019-06-124-0/+10
* bpo-35766: compile(): rename feature_version parameter (GH-13994) (GH-14001)Victor Stinner2019-06-122-3/+4
* bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...Miss Islington (bot)2019-06-121-0/+2
* bpo-36918: Fix "Exception ignored in" in test_urllib (GH-13996)Miss Islington (bot)2019-06-121-6/+15
* bpo-35766: Change format for feature_version to (major, minor) (GH-13992) (GH...Miss Islington (bot)2019-06-121-1/+8
* [3.8] bpo-36520: Email header folded incorrectly (GH-13608) (GH-13909)Abhilash Raj2019-06-112-0/+132