(original) (raw)
changeset: 106441:8ccb3ad39ee4 user: Serhiy Storchaka storchaka@gmail.com date: Sun Feb 05 22:58:46 2017 +0200 files: Modules/_tracemalloc.c Modules/clinic/_tracemalloc.c.h description: Issue #20186: Regenerated Argument Clinic. diff -r 09ffaffca750 -r 8ccb3ad39ee4 Modules/_tracemalloc.c --- a/Modules/_tracemalloc.c Sat Feb 04 17:37:00 2017 -0800 +++ b/Modules/_tracemalloc.c Sun Feb 05 22:58:46 2017 +0200 @@ -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 -r 09ffaffca750 -r 8ccb3ad39ee4 Modules/clinic/_tracemalloc.c.h --- a/Modules/clinic/_tracemalloc.c.h Sat Feb 04 17:37:00 2017 -0800 +++ b/Modules/clinic/_tracemalloc.c.h Sun Feb 05 22:58:46 2017 +0200 @@ -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]*/ /storchaka@gmail.com