diff options
author | Georg Brandl <georg@python.org> | 2008-06-01 16:42:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-01 16:42:16 (GMT) |
commit | 7a6de8b0f465037ed75104d8f17ca3de99a4da52 (patch) | |
tree | 22bfc2350b2a137406516f1168c8876ffc095a74 /Objects/dictobject.c | |
parent | 4f2c998ca97fdcfa2b137cd54a9fdba4a831d242 (diff) | |
download | cpython-7a6de8b0f465037ed75104d8f17ca3de99a4da52.zip cpython-7a6de8b0f465037ed75104d8f17ca3de99a4da52.tar.gz cpython-7a6de8b0f465037ed75104d8f17ca3de99a4da52.tar.bz2 |
Some style nits. Also clarify in the docstrings what __sizeof__ does.
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index d3a7cb9..6b15131 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."); |