[pypy-svn] r51578 - pypy/dist/pypy/module/_rawffi

fijal at codespeak.net fijal at codespeak.net
Mon Feb 18 12:24:50 CET 2008


Author: fijal
Date: Mon Feb 18 12:24:49 2008
New Revision: 51578

Modified:
   pypy/dist/pypy/module/_rawffi/tracker.py
Log:
enable tracing by default. this yields performance penalty, but it's just
simple int counter.


Modified: pypy/dist/pypy/module/_rawffi/tracker.py
==============================================================================
--- pypy/dist/pypy/module/_rawffi/tracker.py	(original)
+++ pypy/dist/pypy/module/_rawffi/tracker.py	Mon Feb 18 12:24:49 2008
@@ -6,7 +6,7 @@
      Arguments
 
 class Tracker(object):
-    DO_TRACING = False
+    DO_TRACING = True
 
     def __init__(self):
         self.alloced = {}



More information about the Pypy-commit mailing list