summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-01 16:42:16 (GMT)
committerGeorg Brandl <georg@python.org>2008-06-01 16:42:16 (GMT)
commit7a6de8b0f465037ed75104d8f17ca3de99a4da52 (patch)
tree22bfc2350b2a137406516f1168c8876ffc095a74 /Objects/bytesobject.c
parent4f2c998ca97fdcfa2b137cd54a9fdba4a831d242 (diff)
downloadcpython-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/bytesobject.c')
-rw-r--r--Objects/bytesobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index 0de24f8..61ee42ab 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)