summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276)Victor Stinner2020-01-301-0/+1
* bpo-39493: Fix definition of IO.closed in typing.py (#18265)Shantanu2020-01-301-0/+1
* bpo-39485: fix corner-case in method-detection of mock (GH-18252)Carl Friedrich Bolz-Tereick2020-01-291-0/+3
* bpo-39153: Clarify C API *SetItem refcounting semantics (GH-18220)Joannah Nanjekye2020-01-291-0/+5
* bpo-36051: Drop GIL during large bytes.join() (GH-17757)Bruce Merry2020-01-292-0/+2
* bpo-39401: Avoid unsafe DLL load on Windows 7 and earlier (GH-18231)Steve Dower2020-01-291-0/+1
* bpo-38960: DTrace build fix for FreeBSD. (GH-17451)David Carlier2020-01-281-0/+1
* bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412)Rémi Lapeyre2020-01-281-0/+2
* bpo-39439: Fix multiprocessing spawn path in a venv on Windows (GH-18158)Adam Meily2020-01-281-0/+1
* bpo-39393: Misleading error message on dependent DLL resolution failure (GH-1...Zackery Spytz2020-01-281-0/+2
* bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windo...Christoph Reiter2020-01-281-0/+5
* bpo-39392: Turtle overlap fill depends on OS (#18223)Terry Jan Reedy2020-01-271-0/+1
* bpo-30780: Add IDLE configdialog tests (#3592)Cheryl Sabella2020-01-271-0/+1
* bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH...Dong-hee Na2020-01-271-0/+2
* bpo-39320: Handle unpacking of **values in compiler (GH-18141)Mark Shannon2020-01-271-0/+4
* bpo-25597: Ensure wraps' return value is used for magic methods in MagicMock ...Karthikeyan Singaravelan2020-01-271-0/+3
* Fix linecache.py add lazycache to __all__ and use dict.clear to clear the cac...加和2020-01-261-0/+3
* bpo-38932: Mock fully resets child objects on reset_mock(). (GH-17409)Vegard Stikbakke2020-01-251-0/+1
* Merge tag 'v3.9.0a3'Łukasz Langa2020-01-2586-220/+906
|\
| * Python 3.9.0a3v3.9.0a3Łukasz Langa2020-01-2486-220/+906
* | bpo-39082: Allow AsyncMock to correctly patch static/class methods (GH-18116)Matthew Kokotovich2020-01-251-0/+1
* | bpo-39388: IDLE: Fix bug when cancelling out of configdialog (GH-18068)Cheryl Sabella2020-01-251-0/+1
|/
* bpo-39430: Fix race condition in lazy imports in tarfile. (GH-18161)Serhiy Storchaka2020-01-241-0/+1
* bpo-39390 shutil: fix argument types for ignore callback (GH-18122)mbarkhau2020-01-241-0/+2
* bpo-38473: Handle autospecced functions and methods used with attach_mock (GH...Karthikeyan Singaravelan2020-01-241-0/+2
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-242-0/+4
* bpo-39413: Implement os.unsetenv() on Windows (GH-18163)Victor Stinner2020-01-241-0/+1
* Fix `mock.patch.dict` to be stopped with `mock.patch.stopall` (#17606)Mario Corchero2020-01-241-0/+2
* bpo-17005: Add a class to perform topological sorting to the standard library...Pablo Galindo2020-01-231-0/+3
* bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...Pablo Galindo2020-01-231-0/+2
* bpo-39320: Handle unpacking of *values in compiler (GH-17984)Mark Shannon2020-01-231-0/+15
* bpo-39050: The Help button in IDLE's config menu works again (GH-17611)Zackery Spytz2020-01-231-0/+1
* bpo-29435: Allow is_tarfile to take a filelike obj (GH-18090)William Woodruff2020-01-232-0/+3
* bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131)Pablo Galindo2020-01-232-1/+41
* bpo-39336: Allow packages to not let their child modules be set on them (#18006)Dino Viehland2020-01-231-0/+1
* bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (G...Alex Rebert2020-01-221-0/+3
* bpo-39366: Remove xpath() and xgtitle() methods of NNTP (GH-18035)Dong-hee Na2020-01-221-0/+2
* bpo-39406: Implement os.putenv() with setenv() if available (GH-18128)Victor Stinner2020-01-221-0/+3
* Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)Victor Stinner2020-01-221-1/+0
* bpo-39353: Deprecate the binhex module (GH-18025)Victor Stinner2020-01-221-0/+4
* bpo-39413: Implement os.unsetenv() on Windows (GH-18104)Victor Stinner2020-01-211-0/+1
* bpo-39389: gzip: fix compression level metadata (GH-18077)William Chargin2020-01-211-0/+2
* bpo-39396: Fix math.nextafter(-0.0, +0.0) on AIX 7.1 (GH-18094)Victor Stinner2020-01-211-0/+1
* bpo-32989: IDLE - fix bad editor call of pyparse method (GH-5968)Cheryl Sabella2020-01-211-0/+2
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Andrew Svetlov2020-01-201-0/+1
* Fix asyncio.get_event_loop() documentation (GH-18051)Andrew Svetlov2020-01-201-0/+2
* bpo-39377: json: Remove the encoding option. (GH-18075)Inada Naoki2020-01-201-0/+2
* bpo-38536: locale: Remove trailing space in formatted currency (GH-16864)Inada Naoki2020-01-201-0/+2
* bpo-35561: Supress valgrind false alarm on epoll_ctl(event) (GH-18060)Zackery Spytz2020-01-191-0/+8
* bpo-39372: Clean header files of declared interfaces with no implementations ...Pablo Galindo2020-01-181-0/+8