| 1671 | int code_line; |
| 1672 | } __Pyx_CodeObjectCacheEntry; |
| 1673 | struct __Pyx_CodeObjectCache { |
| 1674 | int count; |
| 1675 | int max_count; |
| 1676 | __Pyx_CodeObjectCacheEntry* entries; |
| 1677 | }; |
| 1678 | static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; |
| 1679 | static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); |
| 1680 | static PyCodeObject *__pyx_find_code_object(int code_line); |
nothing calls this directly
no outgoing calls
no test coverage detected