| 1853 | int code_line; |
| 1854 | } __Pyx_CodeObjectCacheEntry; |
| 1855 | struct __Pyx_CodeObjectCache { |
| 1856 | int count; |
| 1857 | int max_count; |
| 1858 | __Pyx_CodeObjectCacheEntry* entries; |
| 1859 | }; |
| 1860 | static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; |
| 1861 | static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); |
| 1862 | static PyCodeObject *__pyx_find_code_object(int code_line); |
nothing calls this directly
no outgoing calls
no test coverage detected