コード例 #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())
}