Why this error message

2010-02-01 Thread Ray Holt
Guys, I apologize for the last email asking for help I am going to have to remember to check my indentation. Ray -- http://mail.python.org/mailman/listinfo/python-list

Why this error message

2010-01-31 Thread Ray Holt
Why am I getting the error that test is not defined. Thanks, Ray class SpecialFile: def __init__(self, fileName): self.__file = open(fileName, 'W') self.__file.write('* Start Special File *\n\n') def write(self, str): self.__file.write(str) def

Re: Why this error message

2010-01-31 Thread Ryan Kelly
On Sun, 2010-01-31 at 15:25 -0500, Ray Holt wrote: Why am I getting the error that test is not defined. Thanks, Ray class SpecialFile: def __init__(self, fileName): self.__file = open(fileName, 'W') self.__file.write('* Start Special File *\n\n') def