File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22Wrapt is a library for decorators, wrappers and monkey patching.
33"""
44
5- __version_info__ = ("2" , "2" , "0" , "rc8 " )
5+ __version_info__ = ("2" , "2" , "0" , "rc9 " )
66__version__ = "." .join (__version_info__ )
77
88from .__wrapt__ import (
2020 bind_state_to_wrapper ,
2121 decorator ,
2222)
23- from .synchronization import (
24- async_to_sync ,
25- mark_as_async ,
26- mark_as_sync ,
27- sync_to_async ,
28- synchronized ,
29- )
3023from .importer import (
3124 discover_post_import_hooks ,
3225 notify_module_loaded ,
4538)
4639from .proxies import AutoObjectProxy , LazyObjectProxy , ObjectProxy , lazy_import
4740from .signature import with_signature
41+ from .synchronization import (
42+ async_to_sync ,
43+ mark_as_async ,
44+ mark_as_sync ,
45+ sync_to_async ,
46+ synchronized ,
47+ )
4848from .weakrefs import WeakFunctionProxy
4949
5050__all__ = (
You can’t perform that action at this time.
0 commit comments