summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2024-05-09 08:31:47 (GMT)
committerGitHub <noreply@github.com>2024-05-09 08:31:47 (GMT)
commite8cbcf49555c694975a6af56b5cb0af7817e889e (patch)
treeac2793bd3f2250635817976ef7f06340ffc5b091 /Doc
parent027e6d88fb898b7477b822b84f791ca60e64300b (diff)
downloadcpython-e8cbcf49555c694975a6af56b5cb0af7817e889e.zip
cpython-e8cbcf49555c694975a6af56b5cb0af7817e889e.tar.gz
cpython-e8cbcf49555c694975a6af56b5cb0af7817e889e.tar.bz2
GH-101588: Remove deprecated pickle/copy/deepcopy from itertools (gh-118816)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.14.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst
index 5aa6e4f..496a5d8 100644
--- a/Doc/whatsnew/3.14.rst
+++ b/Doc/whatsnew/3.14.rst
@@ -109,6 +109,11 @@ Removed
are removed. They had previously raised a :exc:`DeprecationWarning`
since Python 3.12.
+* :mod:`itertools` support for copy, deepcopy, and pickle operations.
+ These had previously raised a :exc:`DeprecationWarning` since Python 3.12.
+ (Contributed by Raymond Hettinger in :gh:`101588`.)
+
+
Porting to Python 3.14
======================