예제 #1
0
파일: dict.go 프로젝트: remh/go-python
// void PyDict_Clear(PyObject *p)
// Empty an existing dictionary of all key-value pairs.
func PyDict_Clear(self *PyObject) {
	C.PyDict_Clear(topy(self))
}
예제 #2
0
파일: dict.go 프로젝트: gbbr/textmate
// Clear empties the dictionary d of all key-value pairs.
func (d *Dict) Clear() {
	C.PyDict_Clear(c(d))
}
예제 #3
0
파일: dict.go 프로젝트: MogeiWang/py
// Clear empties the dictionary d of all key-value pairs.
func (d *Dict) Clear() {
	C.PyDict_Clear(d.c())
}