summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-12-07 15:15:22 (GMT)
committerGeorg Brandl <georg@python.org>2008-12-07 15:15:22 (GMT)
commiteee3116690e8c587fdf06af65427efabf4390554 (patch)
treed301c8e3f83ed604ba9fe85c29e0568964c415da /Misc
parent6485f247e44509536a0dfe173c47957cbadf04e1 (diff)
downloadcpython-eee3116690e8c587fdf06af65427efabf4390554.zip
cpython-eee3116690e8c587fdf06af65427efabf4390554.tar.gz
cpython-eee3116690e8c587fdf06af65427efabf4390554.tar.bz2
Merged revisions 67463,67572,67576,67628 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67463 | skip.montanaro | 2008-12-01 02:55:22 +0100 (Mon, 01 Dec 2008) | 1 line typo in comment ........ r67572 | georg.brandl | 2008-12-05 10:23:14 +0100 (Fri, 05 Dec 2008) | 2 lines #4458: recognize "-" as an argument, not a malformed option in gnu_getopt(). ........ r67576 | georg.brandl | 2008-12-05 13:09:41 +0100 (Fri, 05 Dec 2008) | 2 lines #4529: fix parser's validation for try-except-finally statements. ........ r67628 | skip.montanaro | 2008-12-07 03:16:00 +0100 (Sun, 07 Dec 2008) | 1 line muffed the default case ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 81b0900..19581d6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,15 @@ Library
- Issue #4483: _dbm module now builds on systems with gdbm & gdbm_compat
libs.
+- Issue #4529: fix the parser module's validation of try-except-finally
+ statements.
+
+- Issue #4458: getopt.gnu_getopt() now recognizes a single "-" as an argument,
+ not a malformed option.
+
+- Added the subprocess.check_output() convenience function to get output
+ from a subprocess on success or raise an exception on error.
+
- Issue #4542: On Windows, binascii.crc32 still accepted str as binary input;
the corresponding tests now pass.