>>> print chr(65)
Traceback (innermost last):
File "<stdin>", line 1
ValueError: chr() arg not in range(256)
>>> print chr(65)
Traceback (innermost last):
File "<stdin>", line 1
TypeError: no arguments needed
Notice that the error message changes. The second error message keeps comming
back all subsequent times.
Also, some error messages shows up with strange looking characters:
>>> print ord('A')
Traceback (innermost last):
File "<stdin>", line 1
TypeError: bad argument list (format '@"Tord() arg must have length 1')
Another python execution resulted in:
>>> print ord('A')
Traceback (innermost last):
File "<stdin>", line 1
TypeError: bad argument list (format '@<Tord() arg must have length 1')
Any comments??
Daniel Larsson email: dlarsson@seisy.abb.se
ABB Indusrtial Systems AB phone: +46-21-34 30 29
S-721 67 Vaesteraas fax : +46-21-34 25 55
Sweden