summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Post 3.9.0a3Łukasz Langa2020-01-251-1/+1
* Merge tag 'v3.9.0a3'Łukasz Langa2020-01-2589-275/+1024
|\
| * Python 3.9.0a3v3.9.0a3Łukasz Langa2020-01-2489-275/+1024
* | bpo-37955: correct mock.patch docs with respect to the returned type (GH-15521)Paulo Henrique Silva2020-01-252-2/+4
* | bpo-39082: Allow AsyncMock to correctly patch static/class methods (GH-18116)Matthew Kokotovich2020-01-253-0/+26
* | bpo-39388: IDLE: Fix bug when cancelling out of configdialog (GH-18068)Cheryl Sabella2020-01-254-8/+19
|/
* bpo-39430: Fix race condition in lazy imports in tarfile. (GH-18161)Serhiy Storchaka2020-01-242-10/+9
* bpo-38631: Avoid Py_FatalError() in GC collect() (GH-18164)Victor Stinner2020-01-241-7/+1
* bpo-39390 shutil: fix argument types for ignore callback (GH-18122)mbarkhau2020-01-243-1/+45
* bpo-38473: Handle autospecced functions and methods used with attach_mock (GH...Karthikeyan Singaravelan2020-01-243-0/+35
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-2412-154/+52
* bpo-39413: Implement os.unsetenv() on Windows (GH-18163)Victor Stinner2020-01-246-49/+150
* bpo-39361: Document the removal of PyTypeObject.tp_print (GH-18125)Ammar Askar2020-01-241-0/+5
* bpo-39426: Fix outdated default and highest protocols in docs (GH-18154)Mark Dickinson2020-01-243-19/+21
* bpo-39429: Add a new "Python Development Mode" doc page (GH-18132)Victor Stinner2020-01-2413-49/+268
* Fix `mock.patch.dict` to be stopped with `mock.patch.stopall` (#17606)Mario Corchero2020-01-243-2/+69
* bpo-24928: Add test case for patch.dict using OrderedDict (GH -11437)Emmanuel Arias2020-01-241-0/+20
* bpo-17005: Minor improvements to the documentation of TopologicalSorter (GH-1...Pablo Galindo2020-01-231-75/+67
* bpo-39431: Also mention nonlocal in assignment quirk (GH-17375)Shanavas M2020-01-231-4/+4
* bpo-17005: Add a class to perform topological sorting to the standard library...Pablo Galindo2020-01-236-3/+738
* bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...Pablo Galindo2020-01-233-9/+59
* bpo-39320: Handle unpacking of *values in compiler (GH-17984)Mark Shannon2020-01-2310-2347/+2336
* bpo-32989: IDLE - remove unneeded parameter (GH-18138)Terry Jan Reedy2020-01-232-2/+3
* bpo-39050: The Help button in IDLE's config menu works again (GH-17611)Zackery Spytz2020-01-234-1/+15
* bpo-29435: Allow is_tarfile to take a filelike obj (GH-18090)William Woodruff2020-01-235-2/+45
* bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131)Pablo Galindo2020-01-233-2/+73
* bpo-39336: Allow packages to not let their child modules be set on them (#18006)Dino Viehland2020-01-236-338/+379
* bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (G...Alex Rebert2020-01-223-2/+16
* bpo-39366: Remove xpath() and xgtitle() methods of NNTP (GH-18035)Dong-hee Na2020-01-224-66/+9
* bpo-39406: Implement os.putenv() with setenv() if available (GH-18128)Victor Stinner2020-01-226-38/+35
* bpo-39406: os.putenv() avoids putenv_dict on Windows (GH-18126)Victor Stinner2020-01-221-2/+6
* Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)Victor Stinner2020-01-226-94/+12
* bpo-39353: Deprecate the binhex module (GH-18025)Victor Stinner2020-01-229-25/+120
* bpo-39425: Fix list.count performance regression (GH-18119)Dong-hee Na2020-01-221-0/+4
* bpo-39377: json: Update doc about the encoding option. (GH-18076)Inada Naoki2020-01-222-8/+11
* closes bpo-39415: Remove unused codes from longobject.c complexobject.c float...Dong-hee Na2020-01-223-68/+0
* PyLong_AsLongLong() docs should say 'long long' (#18082)Keith Erskine2020-01-211-1/+1
* bpo-39406: Add PY_PUTENV_DICT macro to posixmodule.c (GH-18106)Victor Stinner2020-01-211-15/+37
* bpo-39413: Implement os.unsetenv() on Windows (GH-18104)Victor Stinner2020-01-216-12/+92
* Move test_math tests (GH-18098)Victor Stinner2020-01-211-148/+148
* bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)Victor Stinner2020-01-211-1/+1
* bpo-39389: gzip: fix compression level metadata (GH-18077)William Chargin2020-01-213-3/+31
* bpo-39396: Fix math.nextafter(-0.0, +0.0) on AIX 7.1 (GH-18094)Victor Stinner2020-01-213-79/+86
* bpo-32989: IDLE - fix bad editor call of pyparse method (GH-5968)Cheryl Sabella2020-01-216-39/+154
* improve the documentation of the LOAD_METHOD and CALL_METHOD (GH-18079)Carl Friedrich Bolz-Tereick2020-01-211-8/+10
* bpo-39383: Mention Darwin as a potential value for platform.system() (GH-18054)Peter Bittner2020-01-201-3/+2
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Andrew Svetlov2020-01-203-4/+49
* Fix asyncio.get_event_loop() documentation (GH-18051)Andrew Svetlov2020-01-202-2/+6
* bpo-35134: Migrate frameobject.h contents to cpython/frameobject.h (GH-18052)Nick Coghlan2020-01-202-74/+95
* bpo-39377: json: Remove the encoding option. (GH-18075)Inada Naoki2020-01-203-15/+2