[pypy-commit] pypy default: Fix a last import

arigo noreply at buildbot.pypy.org
Tue Sep 10 14:33:53 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r66893:967ae258fa75
Date: 2013-09-10 14:33 +0200
http://bitbucket.org/pypy/pypy/changeset/967ae258fa75/

Log:	Fix a last import

diff --git a/rpython/rlib/rsre/test/test_char.py b/rpython/rlib/rsre/test/test_char.py
--- a/rpython/rlib/rsre/test/test_char.py
+++ b/rpython/rlib/rsre/test/test_char.py
@@ -48,7 +48,7 @@
     assert not rsre_char.is_uni_word(ord(','))
 
 def test_category():
-    from sre_constants import CHCODES
+    from rpython.rlib.rsre.rpy.sre_constants import CHCODES
     cat = rsre_char.category_dispatch
     #
     assert     cat(CHCODES["category_digit"], ord('1'))


More information about the pypy-commit mailing list