summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Python 3.8.0b4v3.8.0b4Łukasz Langa2019-08-291-88/+109
* [3.8] bpo-37834: Prevent shutil.rmtree exception (GH-15602) (#15603)Łukasz Langa2019-08-291-1/+1
* [3.8] bpo-37034: Display argument name on errors with keyword arguments with ...Serhiy Storchaka2019-08-292-42/+95
* bpo-36743: __get__ is sometimes called without the owner argument (GH-12992) ...Miss Islington (bot)2019-08-293-5/+5
* bpo-37960: Silence only necessary errors in repr() of buffered and text strea...Miss Islington (bot)2019-08-291-4/+4
* bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...Miss Islington (bot)2019-08-291-9/+18
* [3.8] bpo-37950: Fix ast.dump() when call with incompletely initialized node....Serhiy Storchaka2019-08-292-15/+53
* bpo-36871: Ensure method signature is used when asserting mock calls to a met...Miss Islington (bot)2019-08-292-1/+83
* bpo-35946: Improve assert_called_with documentation (GH-11796)Miss Islington (bot)2019-08-281-1/+1
* bpo-34775: Return NotImplemented in PurePath division. (GH-9509) (GH-15172)Miss Islington (bot)2019-08-292-2/+49
* bpo-18378: Recognize "UTF-8" as a valid name in locale._parse_localename (GH-...Miss Islington (bot)2019-08-282-0/+40
* [3.8] bpo-37482: Fix email address name with encoded words and special chars ...bsiem2019-08-292-0/+27
* closes bpo-37965: Fix compiler warning of distutils CCompiler.test_function. ...Miss Islington (bot)2019-08-281-1/+2
* bpo-36582: Make collections.UserString.encode() return bytes, not str (GH-131...Miss Islington (bot)2019-08-272-6/+18
* Fix an invalid assertEqual() call in test_descr.py (GH-15318)Miss Islington (bot)2019-08-261-5/+1
* bpo-37664: Update ensurepip bundled wheels, again (GH-15483)Steve Dower2019-08-263-2/+2
* bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...Miss Islington (bot)2019-08-262-1/+23
* [3.8] bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant...Miss Islington (bot)2019-08-262-0/+82
* bpo-37805: Add tests for json.dump(..., skipkeys=True) (GH-15489)Miss Islington (bot)2019-08-261-0/+10
* bpo-37824: Properly handle user input warnings in IDLE shell. (GH-15500)Miss Islington (bot)2019-08-262-14/+9
* [3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (G...Nick Coghlan2019-08-263-38/+84
* bpo-37929: IDLE: avoid Squeezer-related config dialog crashes (GH-15452)Miss Islington (bot)2019-08-243-50/+26
* [3.8] bpo-37942: Improve argument clinic float converter (GH-15470) (GH-15480)Raymond Hettinger2019-08-241-8/+20
* bpo-37798: Test both Python and C versions in test_statistics.py (GH-15453) (...Miss Islington (bot)2019-08-241-33/+73
* bpo-37772: fix zipfile.Path.iterdir() outputs (GH-15170) (#15461)Miss Islington (bot)2019-08-242-52/+134
* [3.8] 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) (GH-15447)Miss Islington (bot)2019-08-231-14/+1
* bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266) (GH-...Miss Islington (bot)2019-08-231-73/+82
* bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435)Victor Stinner2019-08-231-0/+17
* bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389)Miss Islington (bot)2019-08-231-0/+5
* bpo-26589: Add http status code 451 (GH-15413) (GH-15436)Miss Islington (bot)2019-08-232-0/+6
* bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423)Miss Islington (bot)2019-08-231-6/+10
* bpo-37915: Fix comparison between tzinfo objects and timezone objects (GH-15390)Miss Islington (bot)2019-08-231-0/+5
* bpo-28556: Add a regression test to typing (GH-15396)Miss Islington (bot)2019-08-221-0/+17
* Add missing space to warning message (GH-14915) (GH-15379)Miss Islington (bot)2019-08-211-1/+1
* bpo-37834: Fix test on Windows 7 (GH-15377)Miss Islington (bot)2019-08-211-0/+3
* bpo-9949: Call normpath() in realpath() and avoid unnecessary prefixes (GH-15...Steve Dower2019-08-212-5/+10
* bpo-36311: Fixes decoding multibyte characters around chunk boundaries and im...Miss Islington (bot)2019-08-211-3/+17
* bpo-37834: Normalise handling of reparse points on Windows (GH-15370)Steve Dower2019-08-215-31/+159
* bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287)Miss Islington (bot)2019-08-215-31/+291
* Fix difflib `?` hint in diff output when dealing with tabs (GH-15201)Miss Islington (bot)2019-08-212-23/+18
* bpo-35518: Skip test that relies on a deceased network service. (GH-15349)Miss Islington (bot)2019-08-201-0/+1
* bpo-37868: Improve is_dataclass for instances. (GH-15325)Miss Islington (bot)2019-08-192-2/+29
* bpo-36502: Correct documentation of str.isspace() (GH-15019) (GH-15296)Greg Price2019-08-191-1/+12
* bpo-37642: Update acceptable offsets in timezone (GH-14878) (#15227)Paul Ganssle2019-08-152-3/+31
* bpo-37849: IDLE: fix completion window positioning above line (GH-15267)Miss Islington (bot)2019-08-142-2/+18
* [3.8] bpo-37531: Fix regrtest timeout for subprocesses (GH-15072) (GH-15279)Victor Stinner2019-08-146-18/+78
* bpo-25172: Add test for crypt ImportError on Windows (GH-15252)Miss Islington (bot)2019-08-131-7/+28
* bpo-25172: Raise appropriate ImportError msg when crypt module used on Window...Miss Islington (bot)2019-08-131-1/+10
* bpo-37583: Add err 113 to support.get_socket_conn_refused_errs() (GH-14729)Miss Islington (bot)2019-08-131-0/+3