summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Expand)AuthorAgeFilesLines
* bpo-39586: Deprecate distutils bdist_msi command (GH-18415)Hugo van Kemenade2020-02-101-0/+4
* What's New in Python 3.9: sort improved modules (GH-18383)Victor Stinner2020-02-061-36/+36
* bpo-39542: Document limited C API changes (GH-18378)Victor Stinner2020-02-061-7/+42
* bpo-39491: Merge PEP 593 (typing.Annotated) support (#18260)Jakub Stasiak2020-02-051-0/+8
* Fix MinGW library generation command (GH-17917)Baljak2020-02-051-1/+1
* add whatsnew that was missed from 31d6de5aba009914efa8f0f3c3d7da35217578eb (#...Chris Withers2020-02-041-0/+2
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-031-0/+9
* bpo-39349: Add *cancel_futures* to Executor.shutdown() (GH-18057)Kyle Stanley2020-02-021-0/+9
* bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533)Andrew Svetlov2020-02-011-0/+5
* bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276)Victor Stinner2020-01-301-1/+0
* Update 3.8.rst (GH-18173)fireattack2020-01-251-1/+1
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-241-0/+8
* bpo-39413: Implement os.unsetenv() on Windows (GH-18163)Victor Stinner2020-01-241-0/+3
* bpo-39361: Document the removal of PyTypeObject.tp_print (GH-18125)Ammar Askar2020-01-241-0/+5
* bpo-39429: Add a new "Python Development Mode" doc page (GH-18132)Victor Stinner2020-01-242-8/+9
* bpo-17005: Add a class to perform topological sorting to the standard library...Pablo Galindo2020-01-231-0/+7
* bpo-39366: Remove xpath() and xgtitle() methods of NNTP (GH-18035)Dong-hee Na2020-01-221-0/+7
* Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)Victor Stinner2020-01-221-3/+0
* bpo-39353: Deprecate the binhex module (GH-18025)Victor Stinner2020-01-221-0/+10
* bpo-39377: json: Update doc about the encoding option. (GH-18076)Inada Naoki2020-01-221-3/+7
* bpo-39413: Implement os.unsetenv() on Windows (GH-18104)Victor Stinner2020-01-211-0/+3
* bpo-39357: Remove buffering parameter of bz2.BZ2File (GH-18028)Victor Stinner2020-01-161-0/+10
* bpo-39350: Remove deprecated fractions.gcd() (GH-18021)Victor Stinner2020-01-161-0/+4
* bpo-39351: Remove base64.encodestring() (GH-18022)Victor Stinner2020-01-161-0/+5
* bpo-39329: Add timeout parameter for smtplib.LMTP constructor (GH-17998)Dong-hee Na2020-01-141-0/+3
* bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...Pablo Galindo2020-01-141-0/+4
* bpo-39259: smtp.SMTP/SMTP_SSL now reject timeout = 0 (GH-17958)Dong-hee Na2020-01-141-0/+7
* bpo-39259: ftplib.FTP/FTP_TLS now reject timeout = 0 (GH-17959)Dong-hee Na2020-01-131-0/+7
* bpo-20443: Update What's New In Python 3.9 (GH-17986)Victor Stinner2020-01-131-1/+1
* bpo-39310: Add math.ulp(x) (GH-17965)Victor Stinner2020-01-131-0/+4
* bpo-39288: Add math.nextafter(x, y) (GH-17937)Victor Stinner2020-01-121-0/+7
* bpo-39259: nntplib.NNTP/NNTP_SSL now reject timeout = 0 (GH-17936)Dong-hee Na2020-01-111-0/+7
* bpo-39259: poplib now rejects timeout = 0 (GH-17912)Dong-hee Na2020-01-101-0/+7
* bpo-38615: Add timeout parameter for IMAP4 and IMAP4_SSL constructor (GH-17203)Dong-hee Na2020-01-071-0/+10
* bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882)Victor Stinner2020-01-071-0/+4
* bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-...Kyle Stanley2019-12-301-0/+3
* Update what's new with the latest GC improvements (GH-17708)Pablo Galindo2019-12-261-0/+8
* Add whatsnew for removal of asyncio.loop.create_datagram_endpoint()'s *reuse_...Kyle Stanley2019-12-164-0/+37
* bpo-38916: array.array: remove fromstring() and tostring() (GH-17487)Victor Stinner2019-12-091-0/+5
* Show the differing module names for readlink() (GH-17395)Yoni Lavi2019-11-271-2/+2
* Fix typo in Doc/whatsnew/3.9.rst (GH-17372)Pablo Galindo2019-11-251-1/+1
* bpo-38870: Expose a function to unparse an ast object in the ast module (GH-1...Pablo Galindo2019-11-241-0/+5
* bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354)Victor Stinner2019-11-231-0/+4
* bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...Victor Stinner2019-11-201-0/+5
* bpo-38835: Exclude PyFPE macros from the stable API (GH-17228)Victor Stinner2019-11-201-0/+4
* closes bpo-38712: Add signal.pidfd_send_signal. (GH-17070)Benjamin Peterson2019-11-201-0/+7
* bpo-28286: Deprecate opening GzipFile for writing implicitly. (GH-16417)Serhiy Storchaka2019-11-161-0/+6
* bpo-38650: Constify PyStructSequence_UnnamedField. (GH-17005)Serhiy Storchaka2019-11-161-0/+3
* closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)Benjamin Peterson2019-11-141-0/+3
* bpo-38738: Fix formatting of True and False. (GH-17083)Serhiy Storchaka2019-11-121-4/+4