New issue 2093: PyPy 2.6.0 32bit on OSX has too large maxint. https://bitbucket.org/pypy/pypy/issues/2093/pypy-260-32bit-on-osx-has-too-large-maxint
Tobias Pape: For PyPy 2.5.1: ```` $ file bin/pypy-c-2.5.1 bin/pypy-c-2.5.1: Mach-O executable i386 $ bin/pypy-c-2.5.1 Python 2.7.9 (295ee98b69288471b0fcf2e0ede82ce5209eb90b, Jul 20 2015, 10:00:51) [PyPy 2.6.0 with GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.40)] on darwin Type "help", "copyright", "credits" or "license" for more information. And now for something completely different: ``1.1 final released: http://codespeak.net/pypy/dist/pypy/doc/release-1.1.0.html'' >>>> import sys >>>> sys.maxint 2147483647 ```` For PyPy 2.6.0: ```` $ bin/pypy-c-2.6.0 bin/pypy-c-2.6.0: Mach-O executable i386 $ bin/pypy-c-2.6.0 Python 2.7.9 (295ee98b69288471b0fcf2e0ede82ce5209eb90b, Jun 02 2015, 18:28:40) [PyPy 2.6.0 with GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin Type "help", "copyright", "credits" or "license" for more information. And now for something completely different: ``running tests is essential for developing pypy -- uh? did I break the test? (fijal)'' >>>> import sys >>>> sys.maxint 9223372036854775807 ```` The latter should be not a number >32bit. _______________________________________________ pypy-issue mailing list pypy-issue@python.org https://mail.python.org/mailman/listinfo/pypy-issue