Author: Alex Gaynor <[email protected]>
Branch: 
Changeset: r47816:71bb26b2f173
Date: 2011-10-03 22:13 -0400
http://bitbucket.org/pypy/pypy/changeset/71bb26b2f173/

Log:    simplify some code

diff --git a/pypy/rlib/jit.py b/pypy/rlib/jit.py
--- a/pypy/rlib/jit.py
+++ b/pypy/rlib/jit.py
@@ -178,9 +178,7 @@
 
     This is for advanced usage only.
     """
-    if NonConstant(False):
-        return True
-    return False
+    return NonConstant(False)
 
 class Entry(ExtRegistryEntry):
     _about_ = hint
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to