]> granicus.if.org Git - python/commitdiff
Avoid inconsistent use of 'finalizer'
authorNick Coghlan <ncoghlan@gmail.com>
Sun, 22 Sep 2013 11:32:12 +0000 (21:32 +1000)
committerNick Coghlan <ncoghlan@gmail.com>
Sun, 22 Sep 2013 11:32:12 +0000 (21:32 +1000)
Doc/library/weakref.rst

index ea8100f9670fd0df1f1415e2932420d6a94732ae..e84ac2bc0a46b547b8af593064c8153e9c8a0846 100644 (file)
@@ -540,8 +540,8 @@ no longer forced to :const:`None` during interpreter shutdown. So this
 code should work without any issues on CPython.
 
 However, handling of :meth:`__del__` methods is notoriously implementation
-specific, since it depends on how the interpreter's garbage collector
-handles reference cycles and finalizers.
+specific, since it depends on internal details of the interpreter's garbage
+collector implementation.
 
 A more robust alternative can be to define a finalizer which only references
 the specific functions and objects that it needs, rather than having access