Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.10/site-packages/wrapt/__wrapt__.py: 71%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1import os
3from .wrappers import (ObjectProxy, CallableObjectProxy,
4 PartialCallableObjectProxy, FunctionWrapper,
5 BoundFunctionWrapper, _FunctionWrapperBase)
7try:
8 if not os.environ.get('WRAPT_DISABLE_EXTENSIONS'):
9 from ._wrappers import (ObjectProxy, CallableObjectProxy,
10 PartialCallableObjectProxy, FunctionWrapper,
11 BoundFunctionWrapper, _FunctionWrapperBase)
13except ImportError:
14 pass