[issue7042] test_signal fails on os x 10.6

Ned Deily report at bugs.python.org
Sat Oct 3 11:20:20 CEST 2009


Ned Deily <nad at acm.org> added the comment:

By default, 10.6 prefers to run 64-bit architectures when available.  You 
can easily tell whether a python 2.x is running as 32-bit or 64-bit by 
checking sys.maxint:

$ /usr/local/bin/python2.6 -c 'import sys; print sys.maxint'
2147483647
$ /usr/bin/python2.6 -c 'import sys; print sys.maxint'
9223372036854775807

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7042>
_______________________________________


More information about the Python-bugs-list mailing list