cpython/Misc/NEWS.d/next/Library
Victor Stinner 3bc694d5f3
bpo-43680: Deprecate io.OpenWrapper (GH-25357)
Deprecate io.OpenWrapper and _pyio.OpenWrapper: use io.open and
_pyio.open instead. Until Python 3.9, _pyio.open was not a static
method and builtins.open was set to OpenWrapper to not become a bound
method when set to a class variable. _io.open is a built-in function
whereas _pyio.open is a Python function. In Python 3.10, _pyio.open()
is now a static method, and builtins.open() is now io.open().
2021-04-14 03:24:33 +02:00
..
2019-08-14-13-19-50.bpo-33731.9esS0d.rst bpo-34311: Add locale.localize (GH-15275) 2021-04-12 14:17:40 +02:00
2020-03-09-20-36-07.bpo-39899.9adF3E.rst bpo-39899: os.path.expanduser(): don't guess other Windows users' home directories if the basename of the current user's home directory doesn't match their username. (GH-18841) 2021-04-07 23:50:13 +01:00
2020-03-30-00-13-27.bpo-39906.eaR3fN.rst bpo-39906: Add follow_symlinks parameter to pathlib.Path.stat() and chmod() (GH-18864) 2021-04-07 16:53:39 +01:00
2020-06-13-23-33-32.bpo-36470.oi6Kdb.rst bpo-36470: Allow dataclasses.replace() to handle InitVars with default values (GH-20867) 2021-04-05 12:41:01 -07:00
2021-01-12-23-17-02.bpo-42904.-4qkTD.rst bpo-42904: Fix get_type_hints for class local namespaces (GH-24201) 2021-04-12 10:23:12 -07:00
2021-01-31-00-23-13.bpo-43080.-fDg4Q.rst bpo-43080: pprint for dataclass instances (GH-24389) 2021-04-13 19:59:24 -04:00
2021-02-09-07-24-29.bpo-43176.bocNQn.rst Fix blurb for bpo-43176. (GH-25215) 2021-04-06 10:08:18 -04:00
2021-03-11-00-31-41.bpo-42967.2PeQRw.rst bpo-42967: coerce bytes separator to string in urllib.parse_qs(l) (#24818) 2021-04-11 06:26:09 -07:00
2021-04-03-15-24-59.bpo-2135.xmDAYJ.rst bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-25169) 2021-04-06 08:56:57 -07:00
2021-04-03-18-03-44.bpo-43723.uBhBZS.rst bpo-43723: Deprecate camelCase aliases from threading (GH-25174) 2021-04-12 10:42:53 +02:00
2021-04-08-09-59-20.bpo-43764.tHjO60.rst bpo-43764: Fix __match_args__ generation logic for dataclasses (GH-25284) 2021-04-08 12:54:34 -07:00
2021-04-08-15-19-20.bpo-43731.nnVd3h.rst bpo-43731: Add an encoding parameter to logging.fileConfig() (GH-25273) 2021-04-13 18:17:03 +09:00
2021-04-08-19-32-26.bpo-47383.YI1hdL.rst bpo-43783: Add ParamSpecArgs/Kwargs (GH-25298) 2021-04-10 19:57:05 -07:00
2021-04-09-12-08-01.bpo-43788.YsvInM.rst bpo-43788: Generate version specific _ssl_data.h (GH-25300) 2021-04-09 08:02:00 -07:00
2021-04-09-14-08-03.bpo-43789.eaHlAm.rst bpo-43789: OpenSSL 3.0.0 Don't call passwd callback again in error case (GH-25303) 2021-04-09 15:23:38 +02:00
2021-04-09-14-51-58.bpo-43785.1mM5xE.rst bpo-43785: Improve BZ2File performance by removing RLock (GH-25299) 2021-04-12 14:46:53 +09:00
2021-04-09-16-14-22.bpo-43794.-1XPDH.rst bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309) 2021-04-09 17:59:21 +02:00
2021-04-10-03-30-36.bpo-43478.iZcBTq.rst bpo-43478: Fix formatting of NEWS entry (GH-25335) 2021-04-10 22:19:02 +01:00
2021-04-10-11-35-50.bpo-43799.1iV4pX.rst bpo-43799: OpenSSL 3.0.0: declare OPENSSL_API_COMPAT 1.1.1 (GH-25329) 2021-04-13 08:17:26 +02:00
2021-04-10-18-23-09.bpo-43764.Le5KJp.rst bpo-43764: Add match_args=False parameter to dataclass decorator and to make_dataclasses function. (GH-25337) 2021-04-10 21:28:42 -04:00
2021-04-10-19-14-49.bpo-43772.Bxq0zQ.rst bpo-43772: Fix TypeVar.__ror__ (GH-25339) 2021-04-10 20:00:05 -07:00
2021-04-11-21-10-57.bpo-42248.pedB1E.rst bpo-42248: [Enum] ensure exceptions raised in `_missing_` are released (GH-25350) 2021-04-12 08:51:20 -07:00
2021-04-12-06-01-10.bpo-41515.YaVReb.rst bpo-41515: Fix KeyError raised in get_type_hints (GH-25352) 2021-04-12 11:17:25 -07:00
2021-04-12-09-57-37.bpo-43680.o1zEk_.rst bpo-43680: _pyio.open() becomes a static method (GH-25354) 2021-04-12 10:44:53 +02:00
2021-04-12-11-20-34.bpo-43680.SR0Epv.rst bpo-43680: Deprecate io.OpenWrapper (GH-25357) 2021-04-14 03:24:33 +02:00
2021-04-12-15-15-50.bpo-43787.wCy_Wd.rst bpo-43787: Add __iter__ to GzipFile, BZ2File, and LZMAFile (GH-25353) 2021-04-13 13:51:49 +09:00
2021-04-12-18-01-10.bpo-43820.YkqYW4.rst Remove an unnecessary copy of the 'namespace' parameter to make_dataclass(). (GH-25372) 2021-04-12 21:02:02 -04:00
README.rst Link to blurb on PyPI in the NEWS.d READMEs. (#3323) 2017-09-05 10:38:05 -07:00

Put news entry `blurb`_ files for the *Library* section in this directory.

.. _blurb: https://pypi.org/project/blurb/