Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 699B

12345678910111213141516171819
  1. __version_info__ = ('1', '10', '11')
  2. __version__ = '.'.join(__version_info__)
  3. from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
  4. BoundFunctionWrapper, WeakFunctionProxy, resolve_path, apply_patch,
  5. wrap_object, wrap_object_attribute, function_wrapper,
  6. wrap_function_wrapper, patch_function_wrapper,
  7. transient_function_wrapper)
  8. from .decorators import (adapter_factory, AdapterFactory, decorator,
  9. synchronized)
  10. from .importer import (register_post_import_hook, when_imported,
  11. notify_module_loaded, discover_post_import_hooks)
  12. try:
  13. from inspect import getcallargs
  14. except ImportError:
  15. from .arguments import getcallargs