Re: Please have a look at this class

2007-01-25 Thread Steven D'Aprano
On Thu, 25 Jan 2007 06:38:28 -0800, antred wrote: > Hello everyone, > > While working on a program I encountered a situation where I'd > construct a largish data structure (a tree) from parsing a host of > files and would end up having to throw away parts of my newly built > tree if a file turned

Re: Please have a look at this class

2007-01-25 Thread Bruno Desthuilliers
antred a écrit : > Hello everyone, > > While working on a program I encountered a situation where I'd > construct a largish data structure (a tree) from parsing a host of > files and would end up having to throw away parts of my newly built > tree if a file turned out to contain invalid data. My f

Re: Please have a look at this class

2007-01-25 Thread Neil Cerutti
On 2007-01-25, antred <[EMAIL PROTECTED]> wrote: > While working on a program I encountered a situation where I'd > construct a largish data structure (a tree) from parsing a host > of files and would end up having to throw away parts of my > newly built tree if a file turned out to contain invalid

Please have a look at this class

2007-01-25 Thread antred
Hello everyone, While working on a program I encountered a situation where I'd construct a largish data structure (a tree) from parsing a host of files and would end up having to throw away parts of my newly built tree if a file turned out to contain invalid data. My first thought was 'Well, you c