summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-01 16:42:16 +0000
committerGeorg Brandl <georg@python.org>2008-06-01 16:42:16 +0000
commit547de413a630a522a95297bfa0ae990b3332a9c7 (patch)
tree4756d987e6a741dddcb362bad58d42a08a2f4d9e /Objects
parent6c81378780a4736bb14fd88190be945ec792b45f (diff)
downloadcpython-547de413a630a522a95297bfa0ae990b3332a9c7.tar.gz
Some style nits. Also clarify in the docstrings what __sizeof__ does.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/bytesobject.c2
-rw-r--r--Objects/dictobject.c2
-rw-r--r--Objects/listobject.c2
-rw-r--r--Objects/longobject.c2
-rw-r--r--Objects/typeobject.c2
5 files changed, 5 insertions, 5 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)
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index d3a7cb9bc4..6b15131cd7 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -2052,7 +2052,7 @@ PyDoc_STRVAR(contains__doc__,
PyDoc_STRVAR(getitem__doc__, "x.__getitem__(y) <==> x[y]");
PyDoc_STRVAR(sizeof__doc__,
-"D.__sizeof__() -> size of D in bytes");
+"D.__sizeof__() -> size of D in memory, in bytes");
PyDoc_STRVAR(get__doc__,
"D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.");
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 0216a855aa..796e8cb26e 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -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,
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 5876495bc6..c9d138b9a8 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 */
};
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 5405fec607..e88ca05a8c 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -3421,7 +3421,7 @@ static PyMethodDef object_methods[] = {
{"__format__", object_format, METH_VARARGS,
PyDoc_STR("default object formatter")},
{"__sizeof__", object_sizeof, METH_NOARGS,
- PyDoc_STR("__sizeof__() -> size of object in bytes")},
+ PyDoc_STR("__sizeof__() -> size of object in memory, in bytes")},
{0}
};