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/listobject.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/listobject.c')
-rw-r--r-- | Objects/listobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c index 0216a85..796e8cb 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -2437,7 +2437,7 @@ PyDoc_STRVAR(getitem_doc, PyDoc_STRVAR(reversed_doc, "L.__reversed__() -- return a reverse iterator over the list"); PyDoc_STRVAR(sizeof_doc, -"L.__sizeof__() -- size of L in bytes"); +"L.__sizeof__() -- size of L in memory, in bytes"); PyDoc_STRVAR(append_doc, "L.append(object) -- append object to end"); PyDoc_STRVAR(extend_doc, |