(func, keyword)
| 1895 | |
| 1896 | |
| 1897 | def has_keyword(func, keyword): |
| 1898 | try: |
| 1899 | return keyword in inspect.signature(func).parameters |
| 1900 | except Exception: |
| 1901 | return False |
| 1902 | |
| 1903 | |
| 1904 | def ndimlist(seq): |
no outgoing calls
searching dependent graphs…