commit | 016b366df4c8c3fc25f103fadb613fc5254b9f88 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sat Aug 09 17:22:25 2008 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sat Aug 09 17:22:25 2008 +0000 |
tree | dfdefead947dd277a583918d4f0841e8f70b07b7 | |
parent | 59ce901a2052ca520a0c044f5d547e74cc290061 [diff] [blame] |
#3205: bz2 iterator fails silently on MemoryError
diff --git a/Misc/NEWS b/Misc/NEWS index cabee7f..c6c401f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins ----------------- +- Issue #3205: When iterating over a BZ2File fails allocating memory, raise + a MemoryError rather than silently stop the iteration. + - Issue #1481296: Make long(float('nan')) and int(float('nan')) raise ValueError consistently across platforms.