commit | 7a6de8b0f465037ed75104d8f17ca3de99a4da52 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Jun 01 16:42:16 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Jun 01 16:42:16 2008 +0000 |
tree | 22bfc2350b2a137406516f1168c8876ffc095a74 | |
parent | 4f2c998ca97fdcfa2b137cd54a9fdba4a831d242 [diff] [blame] |
Some style nits. Also clarify in the docstrings what __sizeof__ does.
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index 0de24f8..61ee42a 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c
@@ -3918,7 +3918,7 @@ } PyDoc_STRVAR(sizeof__doc__, -"S.__sizeof__() -> size of S in bytes"); +"S.__sizeof__() -> size of S in memory, in bytes"); static PyObject * string_sizeof(PyBytesObject *v)