From: Christian Heimes Date: Wed, 30 Jan 2008 11:27:57 +0000 (+0000) Subject: Fixed issue #1973: bytes.fromhex('') raises SystemError X-Git-Tag: v3.0a3~140 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c04dac08c4c3c9111aa0f731315057e6d5f6f21a;p=thirdparty%2FPython%2Fcpython.git Fixed issue #1973: bytes.fromhex('') raises SystemError --- diff --git a/Misc/NEWS b/Misc/NEWS index a2dbee4d57a4..7956e9cd945c 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.