The core module is not intended to be used by user code but establishes base objects for all other WinSys modules.
Base of all exceptions in the package
Common exception corresponding to an access denied error
Common exception corresponding to a file or path not found error
Common exception corresponding to a handle not found error
Not intended to be used by instantiated by itself, this class forms the basis for most of the classes in the WinSys package. It provides useful defaults for common functionality, including filling in comparison functions (__ne__(), __le__() and so on) so that total ordering can be assumed for all derived classes.
By default, the name of the class; usually overriden in derived classes to be some meaningful name. Forms the basis for the __str__() and __unicode__() methods.
By default, simply dump the result of as_string() to give a usable if unhelpful default. Intended to be overriden by subclasses, generally to stack attribute values into a list of strings which is then passed to utils.dumped() to fill in the curly brackets.