Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/invoke/vendor/fluidity/backwardscompat.py: 50%

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

6 statements  

1import sys 

2 

3if sys.version_info >= (3,): 

4 def callable(obj): 

5 return hasattr(obj, '__call__') 

6else: 

7 callable = callable 

8