[Python-Dev] timsort for jython

Barry A. Warsaw barry@python.org
Mon, 5 Aug 2002 12:35:43 -0400


>>>>> "TP" == Tim Peters <tim.one@comcast.net> writes:

    TP> What, you mean you haven't retroactively redefined -1 to be
    TP> False yet?  For shame <wink>.

Have you checked current cvs?

Python 2.3a0 (#1, Aug  5 2002, 12:06:31) 
[GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> int(True)
1
>>> int(False)
0
>>> int(Maybe)
-1
>>> 

-Barry