(obj: object)
| 852 | |
| 853 | |
| 854 | def hasinit(obj: object) -> bool: |
| 855 | init: object = getattr(obj, "__init__", None) |
| 856 | if init: |
| 857 | return init != object.__init__ |
| 858 | return False |
| 859 | |
| 860 | |
| 861 | def hasnew(obj: object) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…