[issue1931] NameError: global name 'basestring' is not defined

2008-01-24 Thread Robert Clark
Robert Clark added the comment: basestring is in the builtins library for 2.5.1, but is not there in 3.0a2 Linux: RHEL40 __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[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]> <http://bugs.python.org/

[issue1931] NameError: global name 'basestring' is not defined

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 1511, in __init__ if isinstance( expr, basestring ): NameError: global name 'basestring' is not defined -- messages: 61662 nosy: rclark severity:

[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 sever