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

7 statements  

1import os 

2 

3from .wrappers import (ObjectProxy, CallableObjectProxy, 

4 PartialCallableObjectProxy, FunctionWrapper, 

5 BoundFunctionWrapper, _FunctionWrapperBase) 

6 

7try: 

8 if not os.environ.get('WRAPT_DISABLE_EXTENSIONS'): 

9 from ._wrappers import (ObjectProxy, CallableObjectProxy, 

10 PartialCallableObjectProxy, FunctionWrapper, 

11 BoundFunctionWrapper, _FunctionWrapperBase) 

12 

13except ImportError: 

14 pass