summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2011-11-04 05:09:14 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2011-11-04 05:09:14 (GMT)
commitdcfde5aac99cd1ff7e43b75103feba44a453055a (patch)
tree12dfda02e180d6cfb756b12cae27c71cb60f6cb3 /Misc
parent7ab4192e82154e6d61b635f493ed6c36231614ad (diff)
downloadcpython-dcfde5aac99cd1ff7e43b75103feba44a453055a.zip
cpython-dcfde5aac99cd1ff7e43b75103feba44a453055a.tar.gz
cpython-dcfde5aac99cd1ff7e43b75103feba44a453055a.tar.bz2
Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
Thanks to Robert Xiao.
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 276f665..a605909 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
+ Thanks to Robert Xiao.
+
- Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte
string, instead of a Unicode string.