(obj)
| 512 | |
| 513 | |
| 514 | def _get_c_source_file(obj): |
| 515 | if issubclass(obj, numpy.generic): |
| 516 | return r"_core/src/multiarray/scalartypes.c.src" |
| 517 | elif obj is numpy.ndarray: |
| 518 | return r"_core/src/multiarray/arrayobject.c" |
| 519 | else: |
| 520 | # todo: come up with a better way to generate these |
| 521 | return None |
| 522 | |
| 523 | def linkcode_resolve(domain, info): |
| 524 | """ |
no outgoing calls
no test coverage detected
searching dependent graphs…