Jean-Michel Pichavant wrote:
> class Color:
>     def __init__(self, r, g,b):
>           pass
>     BLACK = Color(0,0,0)
> 
> It make sens from a design point of view to put BLACK in the Color
> namespace. But I don't think it's possible with python.

class Color:
    ...

setattrib(Color, "BLACK", Color(0,0,0))

Uli

-- 
Sator Laser GmbH
Geschäftsführer: Thorsten Föcking, Amtsgericht Hamburg HR B62 932

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to