tracemalloc: fix get_traced_memory() docstring for result type

This commit is contained in:
Victor Stinner 2013-11-26 10:46:06 +01:00
parent 802a484e24
commit 59463d8340
1 changed files with 1 additions and 1 deletions

View File

@ -1264,7 +1264,7 @@ tracemalloc_get_tracemalloc_memory(PyObject *self)
}
PyDoc_STRVAR(tracemalloc_get_traced_memory_doc,
"get_traced_memory() -> int\n"
"get_traced_memory() -> (int, int)\n"
"\n"
"Get the current size and maximum size of memory blocks traced\n"
"by the tracemalloc module as a tuple: (size: int, max_size: int).");