summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* tbpo-36402: Fix threading.Thread._stop() (GH-14047)Victor Stinner2019-06-132-1/+25
* bpo-36402: Fix threading._shutdown() race condition (GH-13948)Victor Stinner2019-06-122-12/+92
* bpo-37069: regrtest uses sys.unraisablehook (GH-13759)Victor Stinner2019-06-123-1/+50
* bpo-37223, test_io: silence last 'Exception ignored in:' (GH-14029)Victor Stinner2019-06-121-0/+5
* Make asyncio stream sendfile fail on error (was hang) (GH-14025)Andrew Svetlov2019-06-121-5/+8
* bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)Paul Monson2019-06-124-0/+10
* bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...Michael Felt2019-06-121-0/+2
* bpo-36918: Fix "Exception ignored in" in test_urllib (GH-13996)Victor Stinner2019-06-121-6/+15
* bpo-35766: compile(): rename feature_version parameter (GH-13994)Victor Stinner2019-06-122-3/+4
* bpo-35766: Change format for feature_version to (major, minor) (GH-13992)Guido van Rossum2019-06-121-1/+8
* Fix test_posix if RWF_HIPRI is defined but not preadv2. (GH-13980)Benjamin Peterson2019-06-111-0/+2
* closes bpo-33758: Skip test_get_type_hints_modules_forwardref. (GH-13977)Benjamin Peterson2019-06-111-2/+2
* bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)Andrew Svetlov2019-06-111-6/+32
* bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13...Raymond Hettinger2019-06-111-0/+6
* bpo-37223: test_io: silence destructor errors (GH-13954)Victor Stinner2019-06-111-0/+10
* bpo-18748: Fix _pyio.IOBase destructor (closed case) (GH-13952)Victor Stinner2019-06-111-0/+10
* bpo-11122: fix hardcoded path checking for rpmbuild in bdist_rpm.py (GH-10594)Marcin Niemira2019-06-081-4/+1
* bpo-37178: Allow a one argument form of math.perm() (GH-13905)Raymond Hettinger2019-06-081-2/+7
* bpo-34886: Fix subprocess.run handling of exclusive arguments (GH-11727)Rémi Lapeyre2019-06-081-2/+2
* bpo-37173: Show passed class in inspect.getfile error (GH-13861)Philipp A2019-06-082-3/+21
* cross port importlib-metadata PR #76 (#13903)Anthony Sottile2019-06-074-0/+4
* bpo-37150: Throw ValueError if FileType class object was passed in add_argume...zygocephalus2019-06-072-0/+22
* bpo-37181: Fix test_regrtest failures on Windows arm64 (GH-13872)Paul Monson2019-06-071-2/+6
* bpo-37191: Move TestPEP590 from test_capi to test_call (GH-13892)Victor Stinner2019-06-072-115/+123
* bpo-37169: Rewrite _PyObject_IsFreed() unit tests (GH-13888)Victor Stinner2019-06-071-14/+15
* bpo-37151: simplify classmethoddescr_call (GH-13340)Jeroen Demeyer2019-06-071-2/+2
* Use assertEqual(). (#13883)Stefan Krah2019-06-071-2/+2
* IDLE: Standardize naming convention for DummyEditwin in tests (GH-13876)Cheryl Sabella2019-06-071-2/+2
* bpo-37188: Fix a divide-by-zero in arrays of size-0 objects (#13881)Eric Wieser2019-06-071-0/+15
* bpo-37177: make IDLE's search dialogs transient (GH-13869)Tal Einat2019-06-072-5/+8
* bpo-36520: Email header folded incorrectly (#13608)websurfer52019-06-062-0/+132
* bpo-2661: Make mapping tests better usable for custom mapping classes. (GH-11...Walter Dörwald2019-06-061-3/+5
* bpo-35551: remove mac_centeuro encoding (GH-13856)Inada Naoki2019-06-061-307/+0
* bpo-35551: encodings update (GH-11446)Ashwin Ramaswami2019-06-051-3/+1
* bpo-21315: Fix parsing of encoded words with missing leading ws. (#13425)Abhilash Raj2019-06-053-3/+45
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-0522-321/+36
* bpo-37158: Simplify and speed-up statistics.fmean() (GH-13832)Raymond Hettinger2019-06-051-4/+4
* bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-1...Zackery Spytz2019-06-051-2/+7
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [str...Emmanuel Arias2019-06-051-0/+16
* bpo-35763: Make IDLE calltip note about '/' less obtrusive (GH-13791)Terry Jan Reedy2019-06-052-61/+67
* bpo-34282: Remove deprecated enum _convert method (GH-13823)Zachary Ware2019-06-041-6/+0
* Merge tag 'v3.8.0b1'Łukasz Langa2019-06-041-70/+84
|\
| * Python 3.8.0b1v3.8.0b1Łukasz Langa2019-06-041-70/+84
* | bpo-30835: email: Fix AttributeError when parsing invalid CTE (GH-13598)Abhilash Raj2019-06-042-1/+10
* | bpo-35805: Add parser for Message-ID email header. (GH-13397)Abhilash Raj2019-06-044-15/+235
* | bpo-37153: test_venv.test_mutiprocessing() calls pool.terminate() (GH-13816)Victor Stinner2019-06-041-2/+4
|/
* bpo-36742: Corrects fix to handle decomposition in usernames (#13812)Steve Dower2019-06-042-8/+9
* Fix extraneous whitespace in QueueListener.prepare (GH-13803)Boris Feld2019-06-041-1/+1
* bpo-36778: Remove outdated comment from CodePageTest (GH-13807)Victor Stinner2019-06-041-1/+0
* bpo-37142: Make asyncio stream tests more robust again (GH-13804)Andrew Svetlov2019-06-041-9/+16