Peter Otten wrote:

> Chances are you have inadvertently created an /instance/ attribute
> build_steps which was then saved:
> 
> s = subproject()
> # ...
> s.configuration["name"] = "my dinner" # modifies the class attribute
> s.build_steps = ["hunt", "kill", "cook"] # creates an instance attribute

Yes, now I see. That's the way I filled the dict and the list.

Thank you for the explanation :)

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

Reply via email to