Marks the function as internally used
(f)
| 81 | |
| 82 | |
| 83 | def internalcode(f): |
| 84 | """Marks the function as internally used""" |
| 85 | internal_code.add(f.__code__) |
| 86 | return f |
| 87 | |
| 88 | |
| 89 | def is_undefined(obj): |
nothing calls this directly
no test coverage detected
searching dependent graphs…