Re: Read a file with open command

2006-08-11 Thread Jan Svec
Hi, simply use file_obj = open ("D:\My documents\File.ods",'rb') for opening file in binary access mode, which is required for binary files on MS Windows. Honza jean-jeanot wrote: > I can access to a file with the command: > file_obj = open ( " D:\My documents\Textfile.txt",'r') > > When I now try

Component framework

2006-08-11 Thread Jan Svec
Hi all, some time ago I've seen an interesting component framework for Python but I don't remember the name. I remember only one example. There were two components: Wheel and Car, Wheel were then inserted four times into Car and so on. This framework has had lazy instantiation of child components.