diff options
Diffstat (limited to 'pypy/__init__.py')
-rw-r--r-- | pypy/__init__.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pypy/__init__.py b/pypy/__init__.py index b7db25411d..4437e12818 100644 --- a/pypy/__init__.py +++ b/pypy/__init__.py @@ -1 +1,16 @@ # Empty + +# XXX Should be empty again, soon. +# XXX hack for win64: +# This patch must stay here until the END OF STAGE 1 +# When all tests work, this branch will be merged +# and the branch stage 2 is started, where we remove this patch. +import sys +if hasattr(sys, "maxsize"): + if sys.maxint <> sys.maxsize: + sys.maxint = sys.maxsize + import warnings + warnings.warn("""\n +---> This win64 port is now in stage 1: sys.maxint was modified. +---> When pypy/__init__.py becomes empty again, we have reached stage 2. +""") |