[issue1930] sys.maxint not found in Python 3.0a2

2008-01-25 Thread Christian Heimes
Christian Heimes added the comment: I've added a comment next to long -> int in r60280. Please note that Python 2.x doesn't run under 3.0. You have to port the code to 2.6 first, make arrangements and at last use the 2to3 tool. -- nosy: +tiran resolution: -> invalid status: open -> clo

[issue1930] sys.maxint not found in Python 3.0a2

2008-01-24 Thread Martin v. Löwis
Martin v. Löwis added the comment: sys.maxint was *not* changed to sys.maxsize - it was simply removed. pyparsing apparently hasn't been ported to Python 3; please bring this up with the pyparsing authors (but then, Python 3 hasn't been released, so they might decide not to take any action for se

[issue1930] sys.maxint not found in Python 3.0a2

2008-01-24 Thread Guido van Rossum
Changes by Guido van Rossum: -- components: +Documentation __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue1930] sys.maxint not found in Python 3.0a2

2008-01-24 Thread Georgij Kondratjev
Georgij Kondratjev added the comment: Maybe it was not noted, but it is documented: http://docs.python.org/dev/3.0/library/sys.html -- nosy: +orivej __ Tracker <[EMAIL PROTECTED]> __

[issue1930] sys.maxint not found in Python 3.0a2

2008-01-24 Thread Robert Clark
Robert Clark added the comment: sys.maxint was changed to sys.maxsize, but this was not noted in the documentation. __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1930] sys.maxint not found in Python 3.0a2

2008-01-24 Thread Robert Clark
New submission from Robert Clark: File "/home/rclark/lib/src/python/pyparsing/pyparsing-1.3.1/pyparsing.py", line 971, in __init__ self.maxLen = sys.maxint AttributeError: 'module' object has no attribute 'maxint' -- messages: 61661 nosy: rclark severity: normal status: open title: