[pypy-svn] r58007 - pypy/branch/tuple-nonresizable-395/pypy/rlib

fijal at codespeak.net fijal at codespeak.net
Tue Sep 9 17:52:14 CEST 2008


Author: fijal
Date: Tue Sep  9 17:52:13 2008
New Revision: 58007

Modified:
   pypy/branch/tuple-nonresizable-395/pypy/rlib/debug.py
Log:
those functions return they're arguments


Modified: pypy/branch/tuple-nonresizable-395/pypy/rlib/debug.py
==============================================================================
--- pypy/branch/tuple-nonresizable-395/pypy/rlib/debug.py	(original)
+++ pypy/branch/tuple-nonresizable-395/pypy/rlib/debug.py	Tue Sep  9 17:52:13 2008
@@ -64,7 +64,7 @@
     callable which checks if annotation is as expected,
     arguments passed are (current annotation, bookkeeper)
     """
-    pass
+    return arg
 
 class Entry(ExtRegistryEntry):
     _about_ = check_annotation
@@ -84,7 +84,7 @@
     """ Function checking whether annotation of SomeList is never resized,
     useful for debugging. Does nothing when run directly
     """
-    pass
+    return arg
 
 class Entry(ExtRegistryEntry):
     _about_ = make_sure_not_resized



More information about the Pypy-commit mailing list