diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-01 14:12:34 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-01 14:12:34 (GMT) |
commit | 14eefe353e3f251bce0bc7ed3415f78c17174d94 (patch) | |
tree | e809c04903624a9caf6a3a8f1b8024b73423f625 /Misc/NEWS | |
parent | 964ec8b2f3bb893ad34d874e55a180a90330bde2 (diff) | |
download | cpython-14eefe353e3f251bce0bc7ed3415f78c17174d94.zip cpython-14eefe353e3f251bce0bc7ed3415f78c17174d94.tar.gz cpython-14eefe353e3f251bce0bc7ed3415f78c17174d94.tar.bz2 |
Issue #25395: Fixed crash when highly nested OrderedDict structures were
garbage collected.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -11,6 +11,9 @@ Release date: TBA Core and Builtins ----------------- +- Issue #25395: Fixed crash when highly nested OrderedDict structures were + garbage collected. + - Issue #25274: sys.setrecursionlimit() now raises a RecursionError if the new recursion limit is too low depending at the current recursion depth. Modify also the "lower-water mark" formula to make it monotonic. This mark is used |