[Tutor] Instances

2005-08-06 Thread Greg Kellogg
Lets say i do: i = f.get_movie('0092411') No I know the i holds an instance: i imdb.Movie.Movie instance at 0x2d7a08 How can I find out the value of all the data this instance has? I can do a dir(i) ['_Movie__modFunct', '_Movie__movie_data', '_Movie__namesRefs', '_Movie__titlesRefs',

Re: [Tutor] Instances

2005-08-06 Thread Kent Johnson
Greg Kellogg wrote: Lets say i do: i = f.get_movie('0092411') No I know the i holds an instance: i imdb.Movie.Movie instance at 0x2d7a08 How can I find out the value of all the data this instance has? I can do a dir(i) ... I know there is more info in there than this, is