summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorErlend E. Aasland <erlend.aasland@protonmail.com>2023-02-10 11:58:14 (GMT)
committerGitHub <noreply@github.com>2023-02-10 11:58:14 (GMT)
commit826bf0e6957fd0addc321d1baee1fa846e9457eb (patch)
treef6ebd5784cfa80106d4d8a99d2090d8f27ab33fc /Misc
parentd40a23c0a11060ba7fa076d50980c18a11a13a40 (diff)
downloadcpython-826bf0e6957fd0addc321d1baee1fa846e9457eb.zip
cpython-826bf0e6957fd0addc321d1baee1fa846e9457eb.tar.gz
cpython-826bf0e6957fd0addc321d1baee1fa846e9457eb.tar.bz2
gh-101277: Finalise isolating itertools (GH-101305)
Add repeat, islice, chain, tee, teedataobject, and batched types to module state. Automerge-Triggered-By: GH:erlend-aasland
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-01-25-00-14-52.gh-issue-101277.FceHX7.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-01-25-00-14-52.gh-issue-101277.FceHX7.rst b/Misc/NEWS.d/next/Library/2023-01-25-00-14-52.gh-issue-101277.FceHX7.rst
new file mode 100644
index 0000000..e09c0e0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-01-25-00-14-52.gh-issue-101277.FceHX7.rst
@@ -0,0 +1,2 @@
+Remove global state from :mod:`itertools` module (:pep:`687`). Patches by
+Erlend E. Aasland.