[pypy-svn] r61670 - pypy/trunk/pypy/rlib/rsre
afa at codespeak.net
afa at codespeak.net
Mon Feb 9 17:52:23 CET 2009
Author: afa
Date: Mon Feb 9 17:52:23 2009
New Revision: 61670
Modified:
pypy/trunk/pypy/rlib/rsre/rsre_char.py
Log:
Fix import
Modified: pypy/trunk/pypy/rlib/rsre/rsre_char.py
==============================================================================
--- pypy/trunk/pypy/rlib/rsre/rsre_char.py (original)
+++ pypy/trunk/pypy/rlib/rsre/rsre_char.py Mon Feb 9 17:52:23 2009
@@ -24,7 +24,7 @@
# we only see re bytecodes as Python longs, we shouldn't have to care about the
# codesize. But sre_compile will compile some stuff differently depending on the
# codesize (e.g., charsets).
-from rlib.runicode import MAXUNICODE
+from pypy.rlib.runicode import MAXUNICODE
if MAXUNICODE == 65535:
CODESIZE = 2
else:
More information about the Pypy-commit
mailing list