// void PyDict_Clear(PyObject *p) // Empty an existing dictionary of all key-value pairs. func PyDict_Clear(self *PyObject) { C.PyDict_Clear(topy(self)) }
// Clear empties the dictionary d of all key-value pairs. func (d *Dict) Clear() { C.PyDict_Clear(c(d)) }
// Clear empties the dictionary d of all key-value pairs. func (d *Dict) Clear() { C.PyDict_Clear(d.c()) }