[pypy-svn] r8597 - pypy/dist/pypy/interpreter

mwh at codespeak.net mwh at codespeak.net
Wed Jan 26 12:02:06 CET 2005


Author: mwh
Date: Wed Jan 26 12:02:06 2005
New Revision: 8597

Modified:
   pypy/dist/pypy/interpreter/executioncontext.py
Log:
Add missing import (detected by translate_pypy, ho hum).


Modified: pypy/dist/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/dist/pypy/interpreter/executioncontext.py	(original)
+++ pypy/dist/pypy/interpreter/executioncontext.py	Wed Jan 26 12:02:06 2005
@@ -1,4 +1,5 @@
 from pypy.interpreter.miscutils import getthreadlocals, Stack
+from pypy.interpreter.error import OperationError
 
 class ExecutionContext:
     """An ExecutionContext holds the state of an execution thread



More information about the Pypy-commit mailing list