[Python-checkins] cpython: Issue #20186: Regenerated Argument Clinic.

serhiy.storchaka python-checkins at python.org
Sun Feb 5 15:59:03 EST 2017


https://hg.python.org/cpython/rev/8ccb3ad39ee4
changeset:   106441:8ccb3ad39ee4
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sun Feb 05 22:58:46 2017 +0200
summary:
  Issue #20186: Regenerated Argument Clinic.

files:
  Modules/_tracemalloc.c          |  2 +-
  Modules/clinic/_tracemalloc.c.h |  4 ++--
  2 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c
--- a/Modules/_tracemalloc.c
+++ b/Modules/_tracemalloc.c
@@ -1177,7 +1177,7 @@
 
 static PyObject *
 _tracemalloc_is_tracing_impl(PyObject *module)
-/*[clinic end generated code: output=2d763b42601cd3ef input=8beb4fb5446813be]*/
+/*[clinic end generated code: output=2d763b42601cd3ef input=af104b0a00192f63]*/
 {
     return PyBool_FromLong(tracemalloc_config.tracing);
 }
diff --git a/Modules/clinic/_tracemalloc.c.h b/Modules/clinic/_tracemalloc.c.h
--- a/Modules/clinic/_tracemalloc.c.h
+++ b/Modules/clinic/_tracemalloc.c.h
@@ -6,7 +6,7 @@
 "is_tracing($module, /)\n"
 "--\n"
 "\n"
-"True if the tracemalloc module is tracing Python memory allocations, False otherwise.");
+"Return True if the tracemalloc module is tracing Python memory allocations.");
 
 #define _TRACEMALLOC_IS_TRACING_METHODDEF    \
     {"is_tracing", (PyCFunction)_tracemalloc_is_tracing, METH_NOARGS, _tracemalloc_is_tracing__doc__},
@@ -189,4 +189,4 @@
 {
     return _tracemalloc_get_traced_memory_impl(module);
 }
-/*[clinic end generated code: output=1e059f24619e23f9 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=159ce5d627964f09 input=a9049054013a1b77]*/

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list