summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-09-24 10:36:11 (GMT)
committerGitHub <noreply@github.com>2017-09-24 10:36:11 (GMT)
commitc247caf33f6e6000d828db4762d1cb12edf3cd57 (patch)
tree85caedaba2394380c428839bda687f23dd853e43 /Misc
parent4facdf523aa6967487a9425f124da9661b59fd43 (diff)
downloadcpython-c247caf33f6e6000d828db4762d1cb12edf3cd57.zip
cpython-c247caf33f6e6000d828db4762d1cb12edf3cd57.tar.gz
cpython-c247caf33f6e6000d828db4762d1cb12edf3cd57.tar.bz2
bpo-30346: An iterator produced by the itertools.groupby() iterator (#1569)
now becames exhausted after advancing the groupby iterator.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-09-24-13-08-46.bpo-30346.Csse77.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-09-24-13-08-46.bpo-30346.Csse77.rst b/Misc/NEWS.d/next/Library/2017-09-24-13-08-46.bpo-30346.Csse77.rst
new file mode 100644
index 0000000..81ad053
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-09-24-13-08-46.bpo-30346.Csse77.rst
@@ -0,0 +1,2 @@
+An iterator produced by itertools.groupby() iterator now becames exhausted
+after advancing the groupby iterator.