I'm using Sphinx, but is there a UML auto generator

2015-10-02 Thread Gilcan Machado
Hi, I'm using Sphinx as a doc tool. Amazing. But I need a way to describe, for example, that, inside a Person class, there's a method called changePassword which depends of the execution of the method checkPermissions, and checkPermissions depends on the execution of two other methods. I'm usin

Why this list of dictionaries doesn't work?

2015-06-18 Thread Gilcan Machado
Hi, I'm trying to write a list of dictionaries like: people = ( {'name':'john', 'age':12} , {'name':'kacey', 'age':18} ) I've thought the code below would do the task. But it doesn't work. And if I "print(people)" what I get is not the organize data structure like above.