private
| 222 | |
| 223 | // private |
| 224 | static Py_ssize_t dictview_len(_PyDictViewObject *dv) { |
| 225 | Py_ssize_t len = 0; |
| 226 | if (dv->dv_dict != NULL) { |
| 227 | len = dv->dv_dict->ma_used; |
| 228 | } |
| 229 | return len; |
| 230 | } |
| 231 | |
| 232 | PyObject *JSObjectKeysProxyMethodDefinitions::JSObjectKeysProxy_intersect(JSObjectKeysProxy *self, PyObject *other) { |
| 233 | PyObject *result; |
no outgoing calls
no test coverage detected