The CommandStatus class is accessible via the sqlobject.manager.command module.
'This command checks the SQLObject definition and checks if the tables in the database match. It can always test for missing tables, and on some databases can test for the existance of other tables. Column types are not currently checked.'
Abstract classes can override this to customize issubclass().
This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).
Return classes ordered by their depth in the class dependency tree (this is not the inheritance tree), from the top level (independant) classes to the deepest level. The dependency tree is defined by the foreign key relations.
Shortens a filename to make it relative to the current directory (if it can). For display purposes.
Open an editor with the given text. Return the new text, or None if no edits were made. If given, everything after breaker will be ignored.
See the source for more information.