Re: Python platforms without long long

2017-10-08 Thread Chris Angelico
On Mon, Oct 9, 2017 at 1:31 AM, Peter J. Holzer wrote: > I just stumbled about this note in > https://docs.python.org/3/library/array.html: > > | 2. The 'q' and 'Q' type codes are available only if the platform C > | compiler used to build Python supports C long long, or, on Windows, > | __int64.

Python platforms without long long

2017-10-08 Thread Peter J. Holzer
I just stumbled about this note in https://docs.python.org/3/library/array.html: | 2. The 'q' and 'Q' type codes are available only if the platform C | compiler used to build Python supports C long long, or, on Windows, | __int64. | | New in version 3.3. The long long type was standardized in C99