Sorry, found the bug somewhere else. You're right. Python is working OK.
--
http://mail.python.org/mailman/listinfo/python-list
I have a loop
for line in f:
...
and if the line is over about 10,000 characters it lops it off. How do I
get around this?
--
http://mail.python.org/mailman/listinfo/python-list
Suppose I have the following python program:
def func():
from sys import stderr, exit
try:
f = open("foo", 'r')
except IOError:
print >> stderr, "Input file foo does not exist"
exit(1)
def main():
import sys
if len(args) != 0:
sys.exit