On Thursday, August 22, 2013 4:59:17 PM UTC-5, Ian wrote:
> On Thu, Aug 22, 2013 at 3:26 PM, Prasad, Ramit
>
> <> wrote:
>
> > Bitswapper wrote:
>
> >>
>
> >> So I have a parent and child class:
>
> >>
>
>
On Thursday, August 22, 2013 5:00:38 PM UTC-5, Bitswapper wrote:
> On Thursday, August 22, 2013 4:26:24 PM UTC-5, Prasad, Ramit wrote:
>
> > Bitswapper wrote:
>
> >
>
> > >
>
> >
>
> > > So I have a parent and child class:
>
> &g
On Thursday, August 22, 2013 4:26:24 PM UTC-5, Prasad, Ramit wrote:
> Bitswapper wrote:
>
> >
>
> > So I have a parent and child class:
>
> >
>
> >
>
> > class Map(object):
>
> > def __init__(self, name='
So I have a parent and child class:
class Map(object):
def __init__(self, name=''):
self.mapName = name
self.rules = {}
class Rule(Map):
def __init__(self, number):
Map.__init__(self)
self.number = number
def __repr__(self):
return "Map " + se