On Wed, Oct 3, 2012 at 2:53 PM, Alan Gauld wrote:
>
> The only times you really need to worry about maxsize is when interfacing to
> external non-python code.
It's not generally a problem, but if you're on a 32-bit platform, for
which sys.maxsize is 2**31 - 1, that sets the maximum length of a
se
On 03/10/12 12:33, eryksun wrote:
On Wed, Oct 3, 2012 at 1:28 AM, Katya Stolpovskaya
Thank you for you reply, but with "long" I got the same error:
from sys import *
long
Traceback (most recent call last):
File "", line 1, in
long
NameError: name 'long' is not defined
I assumed some fam
On Wed, Oct 3, 2012 at 1:28 AM, Katya Stolpovskaya
wrote:
>
> Thank you for you reply, but with "long" I got the same error:
>
from sys import *
long
>
> Traceback (most recent call last):
> File "", line 1, in
> long
> NameError: name 'long' is not defined
I assumed some familiarity w
On Tue, Oct 2, 2012 at 12:55 PM, Katya Stolpovskaya
wrote:
>
> I have this error:
>
from sys import *
maxint
> Traceback (most recent call last):
> File "", line 1, in
> maxint
> NameError: name 'maxint' is not defined
>
>
> What does it mean and how to deal with it?
The "int" type in
On 02/10/2012 17:55, Katya Stolpovskaya wrote:
Hi all,
I have this error:
from sys import *
maxint
Traceback (most recent call last):
File "", line 1, in
maxint
NameError: name 'maxint' is not defined
What does it mean and how to deal with it?
Thank you in advance,
Katya
_
Katya Stolpovskaya wrote:
> I have this error:
>
from sys import *
maxint
> Traceback (most recent call last):
> File "", line 1, in
> maxint
> NameError: name 'maxint' is not defined
>
>
> What does it mean and how to deal with it?
You are probably using Python 3 which doesn't have
Hi all,
I have this error:
>>> from sys import *
>>> maxint
Traceback (most recent call last):
File "", line 1, in
maxint
NameError: name 'maxint' is not defined
What does it mean and how to deal with it?
Thank you in advance,
Katya
--
AKA XIAOJIA
__