commit | 59463d8340731e228bad77893d840cf43e52b98e | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Tue Nov 26 10:46:06 2013 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Tue Nov 26 10:46:06 2013 +0100 |
tree | 4543df5847ef5e63596566cc4e8bc714b10cdf0c | |
parent | 802a484e2482c72a62dc2daeb9dc8e8ebbf1a000 [diff] |
tracemalloc: fix get_traced_memory() docstring for result type
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 @@ } 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).");