( self, matchString = "*" )
| 80 | # performs glob style matching to narrow down |
| 81 | # the set of names returned. |
| 82 | def classNames( self, matchString = "*" ) : |
| 83 | |
| 84 | self.__findAllClasses() |
| 85 | |
| 86 | ### \todo Support re, and allow exclusions, etc... |
| 87 | n = [ x for x in self.__classes.keys() if fnmatch( x, matchString ) ] |
| 88 | n.sort() |
| 89 | return n |
| 90 | |
| 91 | ## Returns the available versions of the specified |
| 92 | # class as a list of ints, with the latest version last. |
no test coverage detected