Home | Trees | Indices | Help |
|
---|
|
13 """Get the list of attrs from the model for the given class""" 4 selected = -1 5 for i in range(0, len(model['classDefs'])): 6 if model['classDefs'][i]['name'] == cl: 7 attrs = model['classDefs'][i]['attrs'] 8 break 9 # I want them sorted, so they are never mixed up 10 # in their order 11 if attrs == None: 12 return None 13 attrs.sort() 14 return attrs15 21
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Feb 6 18:36:11 2008 | http://epydoc.sourceforge.net |