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

tismer at codespeak.net tismer at codespeak.net
Fri Jun 24 16:04:43 CEST 2005


Author: tismer
Date: Fri Jun 24 16:04:42 2005
New Revision: 13804

Modified:
   pypy/dist/pypy/rpython/rclass.py
Log:
missing import

Modified: pypy/dist/pypy/rpython/rclass.py
==============================================================================
--- pypy/dist/pypy/rpython/rclass.py	(original)
+++ pypy/dist/pypy/rpython/rclass.py	Fri Jun 24 16:04:42 2005
@@ -5,7 +5,7 @@
 from pypy.rpython.rmodel import Repr, TyperError, inputconst
 from pypy.rpython.lltype import ForwardReference, GcForwardReference
 from pypy.rpython.lltype import Ptr, Struct, GcStruct, malloc
-from pypy.rpython.lltype import cast_pointer, castable
+from pypy.rpython.lltype import cast_pointer, castable, nullptr
 from pypy.rpython.lltype import RuntimeTypeInfo, getRuntimeTypeInfo, typeOf
 from pypy.rpython.lltype import Array, Char, Void, attachRuntimeTypeInfo
 



More information about the Pypy-commit mailing list