From: Victor Stinner Date: Tue, 26 Nov 2013 09:46:06 +0000 (+0100) Subject: tracemalloc: fix get_traced_memory() docstring for result type X-Git-Tag: v3.4.0b2~470 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59463d8340731e228bad77893d840cf43e52b98e;p=python tracemalloc: fix get_traced_memory() docstring for result type --- diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 8ac5f79793..85923fb2d3 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -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).");