commit | 74001fad7d15f96f5c01b4b42fab16a4d5791ff9 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Apr 07 09:52:59 2013 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Apr 07 09:52:59 2013 -0400 |
tree | 9aaf2d28a14b972a5056586a014b10eec5c05897 | |
parent | aff9ceff3ce951f45520af1a03841ce7af7ed45f [diff] [blame] |
list slotdefs in offset order rather than sorting them (closes #17610) This means we can remove our usage of qsort() than relied on undefined behavior. Backport by Zbigniew Halas.
diff --git a/Misc/NEWS b/Misc/NEWS index 9f145c7..3d9e9dc 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,8 @@ Core and Builtins ----------------- +- Issue #17610: Don't rely on non-standard behavior of the C qsort() function. + Library -------