From 59463d8340731e228bad77893d840cf43e52b98e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 26 Nov 2013 10:46:06 +0100 Subject: tracemalloc: fix get_traced_memory() docstring for result type --- Modules/_tracemalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 8ac5f79..85923fb 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)."); -- cgit v0.12