| 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, |
| 854 | // and while we're at it give them consistent behavior by making sure the |
nothing calls this directly
no test coverage detected