summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-34941: Fix searching Element subclasses. (GH-9766)Serhiy Storchaka2018-10-141-0/+15
* bpo-33656: Move pyshell ctypes import inside try block. (GH-9858)Terry Jan Reedy2018-10-131-3/+3
* bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-9837)Andrew Svetlov2018-10-131-2/+6
* Add new tests for bytes and bytearray constructors. (GH-9843)Serhiy Storchaka2018-10-131-3/+43
* bpo-16965: 2to3 now rewrites execfile() to open with 'rb'. (GH-8569)Zackery Spytz2018-10-132-9/+10
* bpo-22872: multiprocessing.Queue's put() and get() now raise ValueError if th...Zackery Spytz2018-10-132-2/+14
* bpo-34783: Disable test_nonexisting_script for macOS framework builds (GH-9831)Ned Deily2018-10-121-0/+4
* bpo-23831: Add moveto method to the tkinter.Canvas widget. (GH-9768)Juliette Monsel2018-10-122-0/+32
* bpo-34964: Make Tkinter sources more readable by adding blank lines. (GH-9822)Serhiy Storchaka2018-10-128-9/+565
* bpo-34900: Make TestCase.debug() work with subtests (GH-9707)Bruno Oliveira2018-10-122-1/+15
* bpo-31516: Skip test_main_thread_during_shutdown() with COUNT_ALLOCS builds. ...Zackery Spytz2018-10-121-0/+1
* bpo-34922: Fix integer overflow in the digest() and hexdigest() methods (GH-9...Serhiy Storchaka2018-10-111-0/+13
* bpo-34022: Stop forcing of hash-based invalidation with SOURCE_DATE_EPOCH (GH...Elvis Pranskevichus2018-10-105-22/+142
* bpo-34926: Make mimetypes.guess_type accept os.PathLike objects (GH-9777)Mayank Asthana2018-10-102-1/+26
* bpo-33613: Fix test_semaphore_tracker signal tests when using -Werror (GH-9778)Pablo Galindo2018-10-101-2/+4
* bpo-23596: Use argparse for the command line of gzip (GH-9781)Stéphane Wirtel2018-10-101-13/+12
* bpo-23596: Add unit tests for the command line for the gzip module (GH-9775)Stéphane Wirtel2018-10-091-6/+93
* bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716)twisteroid ambassador2018-10-092-4/+69
* bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protection -O0...Victor Stinner2018-10-091-1/+32
* bpo-32680 add default "sock" on SMTP objects (#5345)Romuald Brunet2018-10-092-1/+10
* Extract sendfile tests into a separate test file (#9757)Andrew Svetlov2018-10-092-450/+551
* bpo-34758: add .wasm to recognized file extensions in mimetypes module (GH-9464)travisoneill2018-10-091-0/+1
* Extract tests for sock_*() functions into a separate file (GH-9761)Andrew Svetlov2018-10-082-130/+238
* bpo-31715 Add mimetype for extension .mjs (#3908)Bradley Meck2018-10-081-0/+1
* bpo-34921: Allow escaped NoReturn in get_type_hints (GH-9750)Noah Wood2018-10-081-1/+1
* bpo-34911: Added support for secure websocket cookies (GH-9734)Paul Bailey2018-10-082-1/+58
* bpo-34829: Add missing selection_ methods to the Tkinter Spinbox. (GH-9617)Juliette Monsel2018-10-082-0/+68
* bpo-34906: Doc: Fix typos (2) (GH-9735)Stéphane Wirtel2018-10-061-3/+3
* bpo-34909: keep searching mixins until base class is found (GH-9737)Ethan Furman2018-10-052-3/+22
* Use assertEqual() instead of assertEquals(). (GH-9721)Serhiy Storchaka2018-10-052-2/+2
* Simplify flags checks in sre_compile.py. (GH-9718)Serhiy Storchaka2018-10-051-5/+5
* bpo-34906: Doc: Fix typos (GH-9712)Stéphane Wirtel2018-10-051-1/+1
* Fix a typo ssl.py docstring (GH-9697)Matt Eaton2018-10-051-1/+1
* bpo-34871: inspect: Don't pollute sys.modules (GH-9696)INADA Naoki2018-10-041-1/+1
* bpo-34871: Fix two typos in test_inspect.py (GH-9698)Chih-Hsuan Yen2018-10-041-2/+2
* bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679)Elvis Pranskevichus2018-10-031-0/+36
* bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH-8450)tzickel2018-10-022-24/+56
* bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)Yury Selivanov2018-10-0214-206/+192
* closes bpo-34868: Improve error message with '_' is combined with an invalid ...Benjamin Peterson2018-10-011-0/+3
* bpo-30167: Add test for module.__cached__ is None (GH-7617)INADA Naoki2018-10-011-0/+11
* bpo-34850: Replace is with == in idlelib.iomenu (GH-9649)Terry Jan Reedy2018-09-301-2/+2
* bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645)Serhiy Storchaka2018-09-301-1/+2
* bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH...Andrew Svetlov2018-09-292-47/+1
* bpo-27351: Fix ConfigParser.read() documentation and docstring (GH-8123)Zackery Spytz2018-09-291-4/+4
* bpo-31370: Remove references to threadless builds (#8805)Zackery Spytz2018-09-291-3/+0
* bpo-34521: Fix tests in test_multiprocessing_spawn to use correctly CMSG_SPAC...Pablo Galindo2018-09-281-1/+1
* bpo-34736: improve error message for invalid length b64decode inputs (GH-9563)Tal Einat2018-09-271-1/+5
* bpo-34248: Add filename to error raised in {gnu,ndbm}.open() (GH-8590)Zsolt Cserna2018-09-272-0/+13
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-276-80/+236
* bpo-34819: Use a monotonic clock to compute timeouts in concurrent.futures (G...orlnub1232018-09-271-4/+4