summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [loc...Emmanuel Arias2019-09-105-253/+372
* Skip zoneinfo tests on VxWorks (#13535)hliu02019-09-101-0/+2
* bpo-38076: Make struct module PEP-384 compatible (#15805)Dino Viehland2019-09-101-0/+4
* bpo-38043: Move unicodedata.normalize tests into test_unicodedata. (GH-15712)Greg Price2019-09-103-129/+102
* bpo-38018: Fix test for multiprocessing.shared_memory in BSD systems (GH-15821)Vinay Sharma2019-09-101-2/+7
* bpo-38018: Increase code coverage for multiprocessing.shared_memory (GH-15662)Vinay Sharma2019-09-091-0/+24
* bpo-37995: Add an option to ast.dump() to produce a multiline output. (GH-15631)Serhiy Storchaka2019-09-091-0/+62
* bpo-37840: Fix handling of negative indices in bytearray_getitem() (GH-15250)Sergey Fedoseev2019-09-091-0/+9
* bpo-35941: Fix performance regression in new code (GH-12610)Christian Heimes2019-09-091-2/+2
* bpo-35803: Document and test dir=PathLike for tempfile (GH-11644)Anthony Sottile2019-09-091-2/+14
* bpo-36279: Ensure os.wait3() rusage is initialized (GH-15111)Zackery Spytz2019-09-091-0/+18
* bpo-37758: Cut always-constant conditionals on sys.maxunicode. (GH-15302)Greg Price2019-09-091-1/+1
* bpo-20490: Improve circular import error message (GH-15308)Anthony Sottile2019-09-093-0/+14
* bpo-38006: Avoid closure in weakref.WeakValueDictionary (GH-15641)Victor Stinner2019-09-091-0/+5
* bpo-37876: Tests for ROT-13 codec (GH-15314)Zeth2019-09-091-0/+37
* bpo-26185: Fix repr() on empty ZipInfo object (#13441)Mickaël Schoentgen2019-09-091-0/+27
* bpo-36250: ignore ValueError from signal in non-main thread (GH-12251)Daniel Hahler2019-09-091-0/+29
* bpo-32587: Make winreg.REG_MULTI_SZ support zero-length strings (#13239)Zackery Spytz2019-09-091-0/+1
* bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625)Serhiy Storchaka2019-09-091-0/+37
* bpo-36018: Address more reviewer feedback (GH-15733)Raymond Hettinger2019-09-081-20/+15
* bpo-36946:Fix possible signed integer overflow when handling slices. (GH-15639)HongWeipeng2019-09-081-0/+5
* bpo-37064: Skip test_tools.test_pathfix if installed (GH-15705)Victor Stinner2019-09-051-1/+5
* bpo-37064: Add option -k to Tools/scripts/pathfix.py (GH-15548)PatrikKopkan2019-09-051-0/+64
* bpo-36409: Remove old plistlib API deprecated in 3.4 (GH-15615)Jon Janzen2019-09-051-102/+9
* bpo-22347: Update mimetypes.guess_type to allow proper parsing of URLs (GH-15...Dong-hee Na2019-09-052-1/+9
* bpo-38030: Fix os.stat failures on block devices on Windows (GH-15681)Steve Dower2019-09-041-0/+8
* closes bpo-37966: Fully implement the UAX #15 quick-check algorithm. (GH-15558)Greg Price2019-09-041-0/+2
* bpo-38010 Sync importlib.metadata with importlib_metadata 0.20. (GH-15646)Jason R. Coombs2019-09-021-0/+2
* bpo-15999: Clean up of handling boolean arguments. (GH-15610)Serhiy Storchaka2019-09-016-24/+24
* bpo-15999: Always pass bool instead of int to socket.setblocking(). (GH-15621)Serhiy Storchaka2019-09-014-14/+14
* bpo-15999: Always pass bool instead of int to the expat parser. (GH-15622)Serhiy Storchaka2019-09-011-22/+22
* bpo-36543: Remove old-deprecated ElementTree features. (GH-12707)Serhiy Storchaka2019-09-011-50/+10
* bpo-37764: Fix infinite loop when parsing unstructured email headers. (GH-15239)Ashwin Ramaswami2019-08-312-0/+37
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-3015-20/+20
* bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592)Sergey Fedoseev2019-08-302-0/+24
* bpo-37933: Fix faulthandler.cancel_dump_traceback_later() (GH-15440)Thomas A Caswell2019-08-291-0/+11
* bpo-37034: Display argument name on errors with keyword arguments with Argume...Rémi Lapeyre2019-08-292-42/+95
* bpo-36833: Add tests for Datetime C API Macros (GH-14842)Joannah Nanjekye2019-08-291-0/+59
* bpo-10978: Semaphores can release multiple threads at a time (GH-15588)Raymond Hettinger2019-08-291-0/+32
* bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...Justin Blanchard2019-08-291-9/+18
* bpo-37950: Fix ast.dump() when call with incompletely initialized node. (GH-1...Serhiy Storchaka2019-08-291-0/+29
* bpo-37964: Make sure test works if TESTFN is in a non-ASCII directory. (GH-15...Benjamin Peterson2019-08-291-3/+3
* bpo-18378: Recognize "UTF-8" as a valid name in locale._parse_localename (GH-...Ronald Oussoren2019-08-291-0/+36
* closes bpo-37964: add F_GETPATH command to fcntl (GH-15550)Vinay Sharma2019-08-291-0/+6
* bpo-36582: Make collections.UserString.encode() return bytes, not str (GH-13138)Daniel Fortunov2019-08-281-0/+14
* bpo-37328: remove deprecated HTMLParser.unescape (GH-14186)Inada Naoki2019-08-271-7/+0
* Fix an invalid assertEqual() call in test_descr.py (GH-15318)Zackery Spytz2019-08-261-5/+1
* bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...Andrew Svetlov2019-08-261-0/+19
* bpo-27575: port set intersection logic into dictview intersection (GH-7696)Forest Gregg2019-08-261-0/+14
* bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant(). (G...Serhiy Storchaka2019-08-261-0/+51