summaryrefslogtreecommitdiff
path: root/Objects/dictobject.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-01 16:42:16 +0000
committerGeorg Brandl <georg@python.org>2008-06-01 16:42:16 +0000
commit7a6de8b0f465037ed75104d8f17ca3de99a4da52 (patch)
tree22bfc2350b2a137406516f1168c8876ffc095a74 /Objects/dictobject.c
parent4f2c998ca97fdcfa2b137cd54a9fdba4a831d242 (diff)
downloadcpython-git-7a6de8b0f465037ed75104d8f17ca3de99a4da52.tar.gz
Some style nits. Also clarify in the docstrings what __sizeof__ does.
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r--Objects/dictobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index d3a7cb9bc4..6b15131cd7 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -2052,7 +2052,7 @@ PyDoc_STRVAR(contains__doc__,
PyDoc_STRVAR(getitem__doc__, "x.__getitem__(y) <==> x[y]");
PyDoc_STRVAR(sizeof__doc__,
-"D.__sizeof__() -> size of D in bytes");
+"D.__sizeof__() -> size of D in memory, in bytes");
PyDoc_STRVAR(get__doc__,
"D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.");