Fabien Bodard a écrit :
> the same but with a collection to share the result
the access is also *very* easy:
>>> o = Storage(a=1)
>>> o.a
1
>>> o['a']
1
>>> o.a = 2
>>> o['a']
2
>>> del o.a
>>> o.a
None
--
Sensible and responsible women do not want to vote.
-- Grover Cleveland, 1905