@@ -104,16 +104,30 @@ Removed
104104argparse
105105--------
106106
107- * The *type *, *choices *, and *metavar * parameters
108- of :class: `!argparse.BooleanOptionalAction ` are removed .
107+ * Remove the *type *, *choices *, and *metavar * parameters
108+ of :class: `!argparse.BooleanOptionalAction `.
109109 They were deprecated since 3.12.
110110
111+ collections.abc
112+ ---------------
113+
114+ * Remove :class: `!collections.abc.ByteString `. It had previously raised a
115+ :exc: `DeprecationWarning ` since Python 3.12.
116+
117+
111118email
112119-----
113120
114- * The *isdst * parameter has been removed from :func: `email.utils.localtime `.
121+ * Remove the *isdst * parameter from :func: `email.utils.localtime `.
115122 (Contributed by Hugo van Kemenade in :gh: `118798 `.)
116123
124+ itertools
125+ ---------
126+
127+ * Remove :mod: `itertools ` support for copy, deepcopy, and pickle operations.
128+ These had previously raised a :exc: `DeprecationWarning ` since Python 3.12.
129+ (Contributed by Raymond Hettinger in :gh: `101588 `.)
130+
117131pathlib
118132-------
119133
@@ -122,21 +136,25 @@ pathlib
122136 :meth: `~pathlib.PurePath.is_relative_to `. In previous versions, any such
123137 arguments are joined onto *other *.
124138
139+ sqlite3
140+ -------
141+
142+ * Remove :data: `!version ` and :data: `!version_info ` from :mod: `sqlite3 `.
143+ (Contributed by Hugo van Kemenade in :gh: `118924 `.)
144+
145+ typing
146+ ------
147+
148+ * Remove :class: `!typing.ByteString `. It had previously raised a
149+ :exc: `DeprecationWarning ` since Python 3.12.
150+
125151Others
126152------
127153
128154* Using :data: `NotImplemented ` in a boolean context will now raise a :exc: `TypeError `.
129155 It had previously raised a :exc: `DeprecationWarning ` since Python 3.9. (Contributed
130156 by Jelle Zijlstra in :gh: `118767 `.)
131157
132- * :class: `!typing.ByteString ` and :class: `!collections.abc.ByteString `
133- are removed. They had previously raised a :exc: `DeprecationWarning `
134- since Python 3.12.
135-
136- * :mod: `itertools ` support for copy, deepcopy, and pickle operations.
137- These had previously raised a :exc: `DeprecationWarning ` since Python 3.12.
138- (Contributed by Raymond Hettinger in :gh: `101588 `.)
139-
140158
141159Porting to Python 3.14
142160======================
0 commit comments