summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-36543: Remove old-deprecated ElementTree features. (GH-12707)Serhiy Storchaka2019-09-012-81/+10
* bpo-37764: Fix infinite loop when parsing unstructured email headers. (GH-15239)Ashwin Ramaswami2019-08-313-3/+53
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-3021-29/+29
* IDLE: Fix 2 typos found by Min ho Kim. (GH-15617)Terry Jan Reedy2019-08-302-2/+2
* bpo-37140: Fix StructUnionType_paramfunc() (GH-15612)Victor Stinner2019-08-301-6/+45
* bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592)Sergey Fedoseev2019-08-302-0/+24
* Steven Bethard designated a new maintainer for argparse (GH-15605)Raymond Hettinger2019-08-301-0/+1
* bpo-37834: Prevent shutil.rmtree exception (GH-15602)Ned Deily2019-08-291-1/+1
* 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-292-9/+47
* bpo-36743: __get__ is sometimes called without the owner argument (#12992)Raymond Hettinger2019-08-293-5/+5
* 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-292-15/+53
* bpo-37960: Silence only necessary errors in repr() of buffered and text strea...Serhiy Storchaka2019-08-291-4/+4
* bpo-35946: Improve assert_called_with documentation (GH-11796)Rémi Lapeyre2019-08-291-1/+1
* bpo-36871: Ensure method signature is used when asserting mock calls to a met...Xtreak2019-08-292-1/+83
* 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-292-0/+40
* closes bpo-37964: add F_GETPATH command to fcntl (GH-15550)Vinay Sharma2019-08-291-0/+6
* closes bpo-37965: Fix compiler warning of distutils CCompiler.test_function. ...Anonymous Maarten2019-08-281-1/+2
* bpo-36582: Make collections.UserString.encode() return bytes, not str (GH-13138)Daniel Fortunov2019-08-282-6/+18
* bpo-37328: remove deprecated HTMLParser.unescape (GH-14186)Inada Naoki2019-08-272-15/+0
* Fix an invalid assertEqual() call in test_descr.py (GH-15318)Zackery Spytz2019-08-261-5/+1
* bpo-37664: Update ensurepip bundled wheels, again (GH-15483)Pradyun Gedam2019-08-263-2/+2
* bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...Andrew Svetlov2019-08-262-1/+23
* 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-262-0/+82
* bpo-37805: Add tests for json.dump(..., skipkeys=True) (GH-15489)Dong-hee Na2019-08-261-0/+10
* bpo-37824: Properly handle user input warnings in IDLE shell. (GH-15500)Terry Jan Reedy2019-08-262-14/+9
* bpo-29553: Fix ArgumentParser.format_usage() for mutually exclusive groups (G...Flavian Hautbois2019-08-252-2/+48
* bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15131)Nick Coghlan2019-08-253-38/+84
* bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)Zackery Spytz2019-08-254-3/+20
* bpo-37929: IDLE: avoid Squeezer-related config dialog crashes (GH-15452)Tal Einat2019-08-253-50/+26
* bpo-37942: Improve argument clinic float converter (GH-15470)Raymond Hettinger2019-08-251-8/+20
* bpo-19072: Make @classmethod support chained decorators (GH-8405)Berker Peksag2019-08-242-0/+60
* bpo-37798: Test both Python and C versions in test_statistics.py (GH-15453)Dong-hee Na2019-08-241-33/+73
* bpo-37772: fix zipfile.Path.iterdir() outputs (GH-15170)shireenrao2019-08-242-52/+134
* bpo-37830: Fix compilation of break and continue in finally. (GH-15320)Serhiy Storchaka2019-08-244-6/+61
* bpo-19119: Remove invalid test and rename a misnamed test (GH-15442)Raymond Hettinger2019-08-241-14/+1
* bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266)Dong-hee Na2019-08-231-73/+82
* bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389)Zackery Spytz2019-08-231-0/+5
* bpo-26589: Add http status code 451 (GH-15413)Raymond Hettinger2019-08-232-0/+6
* bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431)Victor Stinner2019-08-231-0/+17
* bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423)Victor Stinner2019-08-231-6/+10
* bpo-14465: Add an indent() function to xml.etree.ElementTree to pretty-print ...Stefan Behnel2019-08-232-1/+169
* test_gdb: use unittest test discovery (GH-15405)Victor Stinner2019-08-231-11/+5
* bpo-37531: Fix regrtest _timedout() function on timeout (GH-15419)Victor Stinner2019-08-231-2/+2
* bpo-37915: Fix comparison between tzinfo objects and timezone objects (GH-15390)Pablo Galindo2019-08-221-0/+5