[pypy-commit] pypy stdlib-2.7.6: cleanup

bdkearns noreply at buildbot.pypy.org
Tue Mar 4 22:58:54 CET 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: stdlib-2.7.6
Changeset: r69690:f8175a0093e2
Date: 2014-03-04 16:22 -0500
http://bitbucket.org/pypy/pypy/changeset/f8175a0093e2/

Log:	cleanup

diff --git a/rpython/rlib/rsre/rpy/_sre.py b/rpython/rlib/rsre/rpy/_sre.py
--- a/rpython/rlib/rsre/rpy/_sre.py
+++ b/rpython/rlib/rsre/rpy/_sre.py
@@ -1,4 +1,3 @@
-import sys
 from rpython.rlib.rsre import rsre_char
 from rpython.rlib.rarithmetic import intmask
 
diff --git a/rpython/rlib/rsre/rsre_char.py b/rpython/rlib/rsre/rsre_char.py
--- a/rpython/rlib/rsre/rsre_char.py
+++ b/rpython/rlib/rsre/rsre_char.py
@@ -5,7 +5,7 @@
 from rpython.rlib.rlocale import tolower, isalnum
 from rpython.rlib.unroll import unrolling_iterable
 from rpython.rlib import jit
-from rpython.rlib.rarithmetic import int_between, intmask
+from rpython.rlib.rarithmetic import int_between
 
 # Note: the unicode parts of this module require you to call
 # rsre_char.set_unicode_db() first, to select one of the modules
@@ -27,9 +27,9 @@
 MAGIC = 20031017
 
 if sys.maxint > 2**32:
-    MAXREPEAT = intmask(2**32 - 1)
+    MAXREPEAT = int(2**32 - 1)
 else:
-    MAXREPEAT = intmask(2**31 - 1)
+    MAXREPEAT = int(2**31 - 1)
 
 # In _sre.c this is bytesize of the code word type of the C implementation.
 # There it's 2 for normal Python builds and more for wide unicode builds (large 


More information about the pypy-commit mailing list