Author: Armin Rigo <ar...@tunes.org>
Branch: use-gc-del-3
Changeset: r84261:3b705156974d
Date: 2016-05-06 13:34 +0200
http://bitbucket.org/pypy/pypy/changeset/3b705156974d/

Log:    update doc

diff --git a/pypy/doc/discussion/finalizer-order.rst 
b/pypy/doc/discussion/finalizer-order.rst
--- a/pypy/doc/discussion/finalizer-order.rst
+++ b/pypy/doc/discussion/finalizer-order.rst
@@ -95,10 +95,12 @@
 To find the queued items, call ``fin.next_dead()`` repeatedly.  It
 returns the next queued item, or ``None`` when the queue is empty.
 
-It is allowed in theory to cumulate several different
+In theory, it would kind of work if you cumulate several different
 ``FinalizerQueue`` instances for objects of the same class, and
 (always in theory) the same ``obj`` could be registered several times
 in the same queue, or in several queues.  This is not tested though.
+For now the untranslated emulation does not support registering the
+same object several times.
 
 
 Ordering of finalizers
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to