aboutsummaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)INADA Naoki2018-07-143-0/+10
* bpo-34108: Fix double carriage return in 2to3 on Windows (#8271)Jason R. Coombs2018-07-132-1/+2
* bpo-33723: Fix test_time.test_thread_time() (GH-8267)Victor Stinner2018-07-121-4/+9
* bpo-33967: Remove use of deprecated assertRaisesRegexp() (GH-8261)Zackery Spytz2018-07-121-1/+1
* bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192)Serhiy Storchaka2018-07-111-0/+32
* bpo-34092, test_logging: increase SMTPHandlerTest timeout (GH-8245)Victor Stinner2018-07-111-2/+3
* Simplify __all__ in multiprocessing (GH-6856)Derek B. Kim2018-07-113-7/+10
* bpo-34031: fix incorrect usage of self.fail in two tests (GH-8091)Bradley Laney2018-07-102-3/+2
* bpo-33967: Fix singledispatch raised IndexError when no args (GH-8184)Dong-hee Na2018-07-102-0/+12
* bpo-11572: Make minor improvements to copy module (GH-8208)Berker Peksag2018-07-092-25/+10
* Fixed several assertTrue() that were intended to be assertEqual(). (GH-8191)Sergey Fedoseev2018-07-096-9/+13
* bpo-33305: Improve SyntaxError for invalid numerical literals. (GH-6517)Serhiy Storchaka2018-07-091-0/+24
* bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684)Serhiy Storchaka2018-07-092-12/+20
* bpo-31014: Fix the webbrowser module. (GH-7267)Serhiy Storchaka2018-07-082-3/+22
* bpo-34041: Allow creating deterministic functions in Connection.create_functi...Sergey Fedoseev2018-07-081-0/+23
* Fix typo in TypeVar docstring (#8142)João D. Ferreira2018-07-071-1/+1
* closes bpo-34056: Always return bytes from _HackedGetData.get_data(). (GH-8130)Benjamin Peterson2018-07-062-7/+21
* bpo-23493: json: Change sort_keys in Python encoder same to C (GH-8131)INADA Naoki2018-07-071-1/+1
* Clarify that example in comment is about fromkeys() (GH-8141)Raymond Hettinger2018-07-061-1/+1
* bpo-34054: multiprocessing uses time.monotonic() (GH-8118)Victor Stinner2018-07-064-13/+12
* bpo-33899: Make tokenize module mirror end-of-file is end-of-line behavior (G...Ammar Askar2018-07-062-24/+57
* bpo-34043: Optimize tarfile uncompress performance (GH-8089)INADA Naoki2018-07-061-18/+12
* Add more detail to the Counter.fromkeys() comment block (GH-8124)Raymond Hettinger2018-07-051-2/+7
* Fix typo in dataclasses documentation (GH-8102)Artjom2018-07-051-1/+1
* bpo-34044: subprocess.Popen copies startupinfo (GH-8090)Victor Stinner2018-07-052-0/+44
* Fix fuzz testing for marshal.loads(). (GH-8106)Serhiy Storchaka2018-07-051-4/+5
* bpo-33720: Improve tests for the stack overflow in marshal.loads(). (GH-7336)Serhiy Storchaka2018-07-051-6/+17
* Minor code refactoring. Compute len() one fewer times on one code path. (GH-...Raymond Hettinger2018-07-041-4/+4
* bpo-32942: Fix environment dependent test_script_helper (GH-8034)Lorenz Mende2018-07-041-16/+31
* bpo-34040, multiprocessing: Fix test_forkserver_sigkill() (GH-8081)Victor Stinner2018-07-041-2/+6
* bpo-34010: Fix tarfile read performance regression (GH-8020)hajoscher2018-07-041-9/+11
* bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918)Zackery Spytz2018-07-031-1/+16
* bpo-34019: Fix wrong arguments for Opera Browser (#8047)Bumsik Kim2018-07-032-12/+11
* bpo-33735: Fix test_multiprocessing random failure (GH-8059)Victor Stinner2018-07-031-3/+3
* bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008)Xtreak2018-07-022-4/+86
* bpo-32568: make select.epoll() and its docs consistent (#7840)Tal Einat2018-06-301-9/+16
* bpo-33974: Fix passing special characters to ttk widgets. (GH-7986)Serhiy Storchaka2018-06-302-1/+41
* bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)Zackery Spytz2018-06-292-0/+12
* bpo-14117: Make minor tweaks to turtledemo (GH-8002)Terry Jan Reedy2018-06-293-4/+0
* bpo-27500: Fix static version of getaddrinfo to resolve IPv6 (GH-7993)Yury Selivanov2018-06-282-6/+32
* bpo-33985: Implement ContextVar.name attribute. (GH-7980)Yury Selivanov2018-06-281-2/+7
* bpo-33842: Remove tarfile.filemode (GH-7661)INADA Naoki2018-06-281-7/+0
* bpo-33715: Fix multiprocessing test_wait_result() (GH-7971)Victor Stinner2018-06-271-2/+2
* bpo-33913: Fix test_multiprocessing_main_handling (GH-7972)Victor Stinner2018-06-271-6/+10
* bpo-25007: Add copy protocol support to zlib compressors and decompressors (G...Zackery Spytz2018-06-271-24/+31
* bpo-30356: Fix test_mymanager_context() of multiprocessing (GH-7968)Victor Stinner2018-06-271-1/+3
* bpo-33929: Fix regression in spawn_main() (#7962)Victor Stinner2018-06-271-2/+6
* bpo-33929: multiprocessing: fix handle leak on race condition (GH-7921)Victor Stinner2018-06-273-6/+29
* bpo-30317, test_multiprocessing: fix test_timeout() (GH-7957)Victor Stinner2018-06-271-2/+2
* bpo-24567: Random subnormal.diff (#7954)Raymond Hettinger2018-06-272-1/+11