[pypy-svn] r25818 - pypy/dist/pypy/rpython

antocuni at codespeak.net antocuni at codespeak.net
Thu Apr 13 21:39:34 CEST 2006


Author: antocuni
Date: Thu Apr 13 21:39:20 2006
New Revision: 25818

Modified:
   pypy/dist/pypy/rpython/rslice.py
Log:
Added a missing import (TyperError).


Modified: pypy/dist/pypy/rpython/rslice.py
==============================================================================
--- pypy/dist/pypy/rpython/rslice.py	(original)
+++ pypy/dist/pypy/rpython/rslice.py	Thu Apr 13 21:39:20 2006
@@ -1,7 +1,7 @@
 from pypy.rpython.lltypesystem.lltype import Signed, Void
 from pypy.objspace.flow.model import Constant
 from pypy.annotation import model as annmodel
-
+from pypy.rpython.error import TyperError
 
 def select_slice_repr(self):
     # Select which one of the three prebuilt reprs to use.



More information about the Pypy-commit mailing list