diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-12-26 21:56:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-26 21:56:40 (GMT) |
commit | f460eea5c5cd555dfdc29558cb990addc5bd35aa (patch) | |
tree | ff5a4b2e8ef677f81098cd478820262f71828a96 | |
parent | 03c8e5d46673e4704c8dc955d52735966ffdc2a4 (diff) | |
download | cpython-f460eea5c5cd555dfdc29558cb990addc5bd35aa.zip cpython-f460eea5c5cd555dfdc29558cb990addc5bd35aa.tar.gz cpython-f460eea5c5cd555dfdc29558cb990addc5bd35aa.tar.bz2 |
Update what's new with the latest GC improvements (GH-17708)
-rw-r--r-- | Doc/whatsnew/3.9.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 64361bb..b315604 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -159,6 +159,14 @@ Added constants :data:`~fcntl.F_OFD_GETLK`, :data:`~fcntl.F_OFD_SETLK` and :data:`~fcntl.F_OFD_SETLKW`. (Contributed by Dong-hee Na in :issue:`38602`.) +gc +-- + +When the garbage collector makes a collection in which some objects resurrect +(they are reachable from outside the isolated cycles after the finalizers have +been executed), do not block the collection of all objects that are still +unreachable. (Contributed by Pablo Galindo and Tim Peters in :issue:`38379`.) + os -- |