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
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 wri
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 writeline