commit | dd4c398c27382502ba514705b69ed1ec72ed9755 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Oct 12 11:28:04 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Oct 12 11:28:04 2006 +0000 |
tree | 71677faaa97fe5ac41e38ef1ff3a1a44ee7392cb | |
parent | b85509d5ef5acbe5959383a1007335ad5b7aa786 [diff] [blame] |
Bug #1545497: when given an explicit base, int() did ignore NULs embedded in the string to convert. (backport from rev. 52305)
diff --git a/Misc/NEWS b/Misc/NEWS index 79ffe86..148dfee 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and builtins ----------------- +- Bug #1545497: when given an explicit base, int() did ignore NULs + embedded in the string to convert. + - Bug #1569998: break inside a try statement (outside a loop) is now recognized and rejected.