Message1842
 
            
            
            
 
   
   
 
  | 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
 |  |
 
| Date | User | Action | Args |  | 2008-02-20 17:17:59 | admin | link | issue1774886 messages |  | 2008-02-20 17:17:59 | admin | create |  | 
 |