summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-06-25 04:36:58 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-06-25 04:36:58 (GMT)
commit97d3555029b02fa4b432c1a1259b64aaa31e4e3e (patch)
treeb986e1e25c2184d7c53b6cdb16e30487c3a7c733 /Misc
parentca5c7153de0e14052483676b2cdf6791f1eeb7d2 (diff)
downloadcpython-97d3555029b02fa4b432c1a1259b64aaa31e4e3e.zip
cpython-97d3555029b02fa4b432c1a1259b64aaa31e4e3e.tar.gz
cpython-97d3555029b02fa4b432c1a1259b64aaa31e4e3e.tar.bz2
Issue #19145: Fix handling of negative values for a "times" keyword argument to itertools.repeat()>
(Patch contributed by Vajrasky Kok.)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index fa6b1f6..cf6e6b6 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1388,6 +1388,7 @@ Norman Vine
Pauli Virtanen
Frank Visser
Johannes Vogel
+Vajrasky Kok
Alex Volkov
Martijn Vries
Sjoerd de Vries
diff --git a/Misc/NEWS b/Misc/NEWS
index e1b2063..7033bb4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,10 @@ Library
- Issue #21832: Require named tuple inputs to be exact strings.
+- Issue #19145: The times argument for itertools.repeat now handles
+ negative values the same way for keyword arguments as it does for
+ positional arguments.
+
- Issue #21812: turtle.shapetransform did not tranform the turtle on the
first call. (Issue identified and fixed by Lita Cho.)