Author: Armin Rigo <[email protected]> Branch: extradoc Changeset: r5076:8bd16d22bf53 Date: 2013-10-14 18:24 +0200 http://bitbucket.org/pypy/extradoc/changeset/8bd16d22bf53/
Log: Add an XXX diff --git a/blog/draft/incremental-gc.rst b/blog/draft/incremental-gc.rst --- a/blog/draft/incremental-gc.rst +++ b/blog/draft/incremental-gc.rst @@ -9,6 +9,7 @@ Let's start with explaining roughly what GC pauses are. In CPython each object has a reference count, which is incremented each time we create references and decremented each time we forget them. This means that objects +(XXX also, very long chains of objects cause unbounded pauses in CPython) are freed each time they become unreachable. That is only half of the story though. Consider code like this:: _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
