summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-30 11:27:57 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-30 11:27:57 (GMT)
commitc04dac08c4c3c9111aa0f731315057e6d5f6f21a (patch)
treea9335f7de5061aa53fcfaf437c283f186631ad15
parent7b876158dc8a69e030d09e6cf78a1e8b6662f0c3 (diff)
downloadcpython-c04dac08c4c3c9111aa0f731315057e6d5f6f21a.zip
cpython-c04dac08c4c3c9111aa0f731315057e6d5f6f21a.tar.gz
cpython-c04dac08c4c3c9111aa0f731315057e6d5f6f21a.tar.bz2
Fixed issue #1973: bytes.fromhex('') raises SystemError
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a2dbee4..7956e9c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
+- Issue #1973: bytes.fromhex('') raises SystemError
+
- Issue #1969: split and rsplit in bytearray are inconsistent
- map() and itertools.imap() no longer accept None for the first argument.