diff options
author | Georg Brandl <georg@python.org> | 2008-06-01 16:42:16 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-01 16:42:16 +0000 |
commit | 7a6de8b0f465037ed75104d8f17ca3de99a4da52 (patch) | |
tree | 22bfc2350b2a137406516f1168c8876ffc095a74 /Objects/bytesobject.c | |
parent | 4f2c998ca97fdcfa2b137cd54a9fdba4a831d242 (diff) | |
download | cpython-git-7a6de8b0f465037ed75104d8f17ca3de99a4da52.tar.gz |
Some style nits. Also clarify in the docstrings what __sizeof__ does.
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r-- | Objects/bytesobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index 0de24f84d9..61ee42ab8c 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -3918,7 +3918,7 @@ string_splitlines(PyBytesObject *self, PyObject *args) } 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) |