summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2014-05-04 11:41:18 (GMT)
committerLarry Hastings <larry@hastings.org>2014-05-04 11:41:18 (GMT)
commit9147a9697ac60a9fff739394056992a61d207a16 (patch)
tree9ff37507d7ff7af438f943ac2f3ab9e7e2bb3d5c /Misc
parent88b5b6ddf60c38f54d0c656d883b0aed6cb03987 (diff)
downloadcpython-9147a9697ac60a9fff739394056992a61d207a16.zip
cpython-9147a9697ac60a9fff739394056992a61d207a16.tar.gz
cpython-9147a9697ac60a9fff739394056992a61d207a16.tar.bz2
Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0.
In porting to Argument Clinic, the first two arguments were reversed.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9034371..2b79789 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,9 @@ Core and Builtins
Library
-------
+- Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0.
+ In porting to Argument Clinic, the first two arguments were reversed.
+
- Issue #21321: itertools.islice() now releases the reference to the source
iterator when the slice is exhausted. Patch by Anton Afanasyev.