| 848 | return IsResourceVariableHelper(o) == 1; |
| 849 | } |
| 850 | bool IsVariable(PyObject* o) { return IsVariableHelper(o) == 1; } |
| 851 | bool IsIndexedSlices(PyObject* o) { return IsIndexedSlicesHelper(o) == 1; } |
| 852 | |
| 853 | // Work around a writable-strings warning with Python 2's PyMapping_Keys macro, |
nothing calls this directly
no test coverage detected