( self, name )
| 92 | # class as a list of ints, with the latest version last. |
| 93 | # If the class doesn't exist returns an empty list. |
| 94 | def versions( self, name ) : |
| 95 | try : |
| 96 | c = self.__findClass( name ) |
| 97 | return c["versions"] |
| 98 | except : |
| 99 | return [] |
| 100 | |
| 101 | ## Sets the default version for the named class. |
| 102 | # This is the version that is loaded if no version |
no test coverage detected