Re: [Tutor] Problem with creating class instance

2008-07-09 Thread Kent Johnson
On Wed, Jul 9, 2008 at 5:02 PM, Mike Meisner <[EMAIL PROTECTED]> wrote: > In creating a Player instance, that instance can create the Stats class, > but when creating the first instance within the Stats class of a Details > class, it fails with the following traceback: > > Traceback (most recent

[Tutor] Problem with creating class instance

2008-07-09 Thread Mike Meisner
I've just started using classes in Python. The basic goal is to develop a script that tracks individual player stats for poker tournaments. This involves nesting a class within a class within a class. The Player class incorporates a Stats class (three instances for three different game types)