Re: Basic Pyrex question
Stefan Behnel <[email protected]> Sat, 17 May 2008 07:49:56 +0200
| Newsgroups | gmane.comp.python.pyrex |
|---|---|
| Message-ID | <[email protected]> |
Lenard Lindstrom wrote: > Yes, the merging of Python's int and long types has been going on for > awhile. When a 32 bit int overflows the result is automatically promoted > to an unlimited size long. The merger has reached completion in Python > 3.0 where the int type has disappeared altogether. being replaced by: the "int" type ;) which essentially is a Py2 "long". Stefan