( self, searchPaths )
| 63 | # classes found on the SearchPath object passed |
| 64 | # in. |
| 65 | def __init__( self, searchPaths ) : |
| 66 | |
| 67 | self.__searchPaths = searchPaths |
| 68 | self.__defaultVersions = {} |
| 69 | self.__loadMutex = threading.RLock() |
| 70 | self.refresh() |
| 71 | |
| 72 | ## Returns a copy of the searchpath used to find classes. |
| 73 | def searchPath( self ) : |