SF patch #798467: Update docstring of has_key for bool changes

(Contributed by George Yoshida.)
This commit is contained in:
Raymond Hettinger 2003-09-01 22:12:08 +00:00
parent 6f6d7b93bc
commit 574aa32578
2 changed files with 2 additions and 2 deletions

View File

@ -765,7 +765,7 @@ proxy_copy(proxyobject *pp)
static PyMethodDef proxy_methods[] = {
{"has_key", (PyCFunction)proxy_has_key, METH_O,
PyDoc_STR("D.has_key(k) -> 1 if D has a key k, else 0")},
PyDoc_STR("D.has_key(k) -> True if D has a key k, else False")},
{"get", (PyCFunction)proxy_get, METH_VARARGS,
PyDoc_STR("D.get(k[,d]) -> D[k] if D.has_key(k), else d."
" d defaults to None.")},

View File

@ -1733,7 +1733,7 @@ dict_iteritems(dictobject *dict)
PyDoc_STRVAR(has_key__doc__,
"D.has_key(k) -> 1 if D has a key k, else 0");
"D.has_key(k) -> True if D has a key k, else False");
PyDoc_STRVAR(get__doc__,
"D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.");