Author: Alex Gaynor <alex.gay...@gmail.com> Branch: Changeset: r67402:b451615b3ded Date: 2013-10-15 16:23 -0700 http://bitbucket.org/pypy/pypy/changeset/b451615b3ded/
Log: Document this branch diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-head.rst @@ -109,4 +109,5 @@ .. branch: file-support-in-rpython make open() and friends rpython - +.. branch: incremental-gc +Added the new incminimark GC which performs GC in incremental steps diff --git a/pypy/module/thread/os_lock.py b/pypy/module/thread/os_lock.py --- a/pypy/module/thread/os_lock.py +++ b/pypy/module/thread/os_lock.py @@ -9,20 +9,6 @@ from pypy.interpreter.typedef import TypeDef -##import sys -##def debug(msg, n): -## return -## tb = [] -## try: -## for i in range(1, 8): -## tb.append(sys._getframe(i).f_code.co_name) -## except: -## pass -## tb = ' '.join(tb) -## msg = '| %6d | %d %s | %s\n' % (rthread.get_ident(), n, msg, tb) -## sys.stderr.write(msg) - - class Lock(W_Root): "A box around an interp-level lock object." _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit