commit | 821a8ea39fb93095cc06c0cd9ef4ce498af73ab3 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Apr 16 22:35:38 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Apr 16 22:35:38 2010 +0000 |
tree | 14a918a5546598aa71781865dcc4cd9e7790c2b4 | |
parent | 5c4e292c14b71bfecb45e39f501329a71254b2cc [diff] [blame] |
have a clear error when passing something > sys.maxsize to bytearray
diff --git a/Misc/NEWS b/Misc/NEWS index 3c49738..b53beab 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins ----------------- +- Issue #8417: Raise an OverflowError when an integer larger than sys.maxsize is + passed to bytearray. + Library -------