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/longobject.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/longobject.c')
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index 5876495..c9d138b 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -3467,7 +3467,7 @@ static PyMethodDef long_methods[] = { {"__getnewargs__", (PyCFunction)long_getnewargs, METH_NOARGS}, {"__format__", (PyCFunction)long__format__, METH_VARARGS}, {"__sizeof__", (PyCFunction)long_sizeof, METH_NOARGS, - "Returns size in bytes"}, + "Returns size in memory, in bytes"}, {NULL, NULL} /* sentinel */ }; |