Some style nits. Also clarify in the docstrings what __sizeof__ does.

This commit is contained in:
Georg Brandl 2008-06-01 16:42:16 +00:00
parent 4f2c998ca9
commit 7a6de8b0f4
7 changed files with 18 additions and 18 deletions

View file

@ -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,