[pypy-svn] pypy default: Duh. It's defined twice.

arigo commits-noreply at bitbucket.org
Thu Jan 20 19:05:25 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r41066:faa1116a3d1c
Date: 2011-01-20 19:04 +0100
http://bitbucket.org/pypy/pypy/changeset/faa1116a3d1c/

Log:	Duh. It's defined twice.

diff --git a/pypy/module/sys/__init__.py b/pypy/module/sys/__init__.py
--- a/pypy/module/sys/__init__.py
+++ b/pypy/module/sys/__init__.py
@@ -26,7 +26,6 @@
         'maxsize'               : 'space.wrap(sys.maxint)',
         'byteorder'             : 'space.wrap(sys.byteorder)', 
         'maxunicode'            : 'space.wrap(vm.MAXUNICODE)',
-        'maxint'                : 'space.wrap(sys.maxint)',
         'stdin'                 : 'state.getio(space).w_stdin',
         '__stdin__'             : 'state.getio(space).w_stdin',
         'stdout'                : 'state.getio(space).w_stdout',


More information about the Pypy-commit mailing list