[pypy-svn] r40846 - pypy/dist/pypy/module/pypyjit

arigo at codespeak.net arigo at codespeak.net
Tue Mar 20 16:11:11 CET 2007


Author: arigo
Date: Tue Mar 20 16:11:10 2007
New Revision: 40846

Modified:
   pypy/dist/pypy/module/pypyjit/portal.py
Log:
typo


Modified: pypy/dist/pypy/module/pypyjit/portal.py
==============================================================================
--- pypy/dist/pypy/module/pypyjit/portal.py	(original)
+++ pypy/dist/pypy/module/pypyjit/portal.py	Tue Mar 20 16:11:10 2007
@@ -20,7 +20,7 @@
         mod = func.__module__ or '?'
         if mod.startswith('pypy.objspace'):
             return False
-        if '_geninterp_' in func.func_globals # skip all geninterped stuff
+        if '_geninterp_' in func.func_globals: # skip all geninterped stuff
             return False
         if mod.startswith('pypy.interpreter.astcompiler'):
             return False



More information about the Pypy-commit mailing list