commit | c3a12775e26f8c8f4148cb247dc88bc38f05dc58 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Sat Oct 03 08:15:49 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Sat Oct 03 08:15:49 2009 +0000 |
tree | 09ad84efb85f3136839cbeb285f05a9f7916fb6e | |
parent | 7664bfe4e2540f07651372075d3179ab2f93988b [diff] [blame] |
Issue #7019: An attempt to unmarshal bad long data could produce unnormalized PyLong objects; make it raise ValueError instead.
diff --git a/Misc/NEWS b/Misc/NEWS index 90b59a7..ab14d9d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins ----------------- +- Issue #7019: Raise ValueError when unmarshalling bad long data, instead + of producing internally inconsistent Python longs. + Library -------