Message1842

Author pekka.klarck
Recipients
Date 2007-08-15.17:35:24
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Jython 2.2rc3 on java1.6.0
Type "copyright", "credits" or "license" for more information.
>>> int(1e10)
Traceback (innermost last):
  File "<console>", line 1, in ?
OverflowError: float too large to convert
>>> int(1e9)
1000000000
>>> long(1e10)
10000000000L


Python 2.5.1 (r251:54863, May  2 2007, 16:56:35) 
[GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> int(1e10)
10000000000L 
>>> long(1e10)
10000000000L
History
Date User Action Args
2008-02-20 17:17:59adminlinkissue1774886 messages
2008-02-20 17:17:59admincreate