[pypy-commit] pypy py3k: missing import

antocuni noreply at buildbot.pypy.org
Wed Aug 22 14:24:50 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r56797:24c49c5d9184
Date: 2012-08-22 13:17 +0200
http://bitbucket.org/pypy/pypy/changeset/24c49c5d9184/

Log:	missing import

diff --git a/pypy/interpreter/argument.py b/pypy/interpreter/argument.py
--- a/pypy/interpreter/argument.py
+++ b/pypy/interpreter/argument.py
@@ -120,7 +120,7 @@
     """
 
     ###  Construction  ###
-    @enforceargs(keywords=[unicode])
+    #@enforceargs(keywords=[unicode])
     def __init__(self, space, args_w, keywords=None, keywords_w=None,
                  w_stararg=None, w_starstararg=None, keyword_names_w=None):
         self.space = space
diff --git a/pypy/objspace/flow/flowcontext.py b/pypy/objspace/flow/flowcontext.py
--- a/pypy/objspace/flow/flowcontext.py
+++ b/pypy/objspace/flow/flowcontext.py
@@ -11,6 +11,7 @@
 from pypy.objspace.flow.framestate import (FrameState, recursively_unflatten,
         recursively_flatten)
 from pypy.tool.stdlib_opcode import host_bytecode_spec
+from pypy.rlib import jit
 
 class StopFlowing(Exception):
     pass


More information about the pypy-commit mailing list