Katya Stolpovskaya wrote: > I have this error: > >>>> from sys import * >>>> maxint > Traceback (most recent call last): > File "<pyshell#4>", line 1, in <module> > 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 sys.maxint. How to deal with that depends on you want to do with the value -- so what are you trying to do? (For most applications sys.maxsize which exists in Python 2 and 3 should work just as well) _______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor
