]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-31558: Update NEWS and ACKS (#4013)
authorŁukasz Langa <lukasz@langa.pl>
Mon, 16 Oct 2017 21:39:08 +0000 (14:39 -0700)
committerGitHub <noreply@github.com>
Mon, 16 Oct 2017 21:39:08 +0000 (14:39 -0700)
Misc/ACKS
Misc/NEWS.d/next/Core and Builtins/2017-10-16-14-27-25.bpo-31558.K-uRRm.rst [new file with mode: 0644]

index 0f6ac7d898a17b74d2468b38f64d134d2ed52128..38f68aca214611fe003b07e0e59f46ea1d4c0497 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -919,6 +919,7 @@ William Lewis
 Akira Li
 Robert Li
 Xuanji Li
+Zekun Li
 Robert van Liere
 Ross Light
 Shawn Ligocki
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-10-16-14-27-25.bpo-31558.K-uRRm.rst b/Misc/NEWS.d/next/Core and Builtins/2017-10-16-14-27-25.bpo-31558.K-uRRm.rst
new file mode 100644 (file)
index 0000000..d502f15
--- /dev/null
@@ -0,0 +1,5 @@
+``gc.freeze()`` is a new API that allows for moving all objects currently
+tracked by the garbage collector to a permanent generation, effectively
+removing them from future collection events. This can be used to protect
+those objects from having their PyGC_Head mutated. In effect, this enables
+great copy-on-write stability at fork().