Author: Maciej Fijalkowski <fij...@gmail.com> Branch: gc_no_cleanup_nursery Changeset: r73292:2efd57cc1412 Date: 2014-09-03 14:41 -0600 http://bitbucket.org/pypy/pypy/changeset/2efd57cc1412/
Log: kill debug prints from dict diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/rpython/rtyper/lltypesystem/rdict.py +++ b/rpython/rtyper/lltypesystem/rdict.py @@ -616,22 +616,18 @@ i = i & mask # keep 'i' as a signed number here, to consistently pass signed # arguments to the small helper methods. - llop.debug_print(lltype.Void, "looking in", i) if not entries.everused(i): if freeslot == -1: freeslot = intmask(i) return r_uint(freeslot) | HIGHEST_BIT elif entries.valid(i): - llop.debug_print(lltype.Void, "found!", hash, entries.hash(i)) checkingkey = entries[i].key if direct_compare and checkingkey == key: return i if d.keyeq is not None and entries.hash(i) == hash: # correct hash, maybe the key is e.g. a different pointer to # an equal object - llop.debug_print(lltype.Void, "hashes compare") found = d.keyeq(checkingkey, key) - llop.debug_print(lltype.Void, "found", found) if d.paranoia: if (entries != d.entries or not entries.valid(i) or entries[i].key != checkingkey): _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit