mirror of
https://github.com/python/cpython.git
synced 2024-11-28 16:45:42 +01:00
ad73674283
Argument Clinic now only includes pycore_gc.h if PyGC_Head is needed, and only includes pycore_runtime.h if _Py_ID() is needed. * Add 'condition' optional argument to Clinic.add_include(). * deprecate_keyword_use() includes pycore_runtime.h when using the _PyID() function. * Fix rendering of includes: comments start at the column 35. * Mark PC/clinic/_wmimodule.cpp.h and "Objects/stringlib/clinic/*.h.h" header files as generated in .gitattributes. Effects: * 42 header files generated by AC no longer include the internal C API, instead of 4 header files before. For example, Modules/clinic/_abc.c.h no longer includes the internal C API. * Fix _testclinic_depr.c.h: it now always includes pycore_runtime.h to get _Py_ID().
49 lines
1.7 KiB
C
Generated
49 lines
1.7 KiB
C
Generated
/*[clinic input]
|
|
preserve
|
|
[clinic start generated code]*/
|
|
|
|
PyDoc_STRVAR(_lsprof_Profiler_getstats__doc__,
|
|
"getstats($self, /)\n"
|
|
"--\n"
|
|
"\n"
|
|
"list of profiler_entry objects.\n"
|
|
"\n"
|
|
"getstats() -> list of profiler_entry objects\n"
|
|
"\n"
|
|
"Return all information collected by the profiler.\n"
|
|
"Each profiler_entry is a tuple-like object with the\n"
|
|
"following attributes:\n"
|
|
"\n"
|
|
" code code object\n"
|
|
" callcount how many times this was called\n"
|
|
" reccallcount how many times called recursively\n"
|
|
" totaltime total time in this entry\n"
|
|
" inlinetime inline time in this entry (not in subcalls)\n"
|
|
" calls details of the calls\n"
|
|
"\n"
|
|
"The calls attribute is either None or a list of\n"
|
|
"profiler_subentry objects:\n"
|
|
"\n"
|
|
" code called code object\n"
|
|
" callcount how many times this is called\n"
|
|
" reccallcount how many times this is called recursively\n"
|
|
" totaltime total time spent in this call\n"
|
|
" inlinetime inline time (not in further subcalls)");
|
|
|
|
#define _LSPROF_PROFILER_GETSTATS_METHODDEF \
|
|
{"getstats", _PyCFunction_CAST(_lsprof_Profiler_getstats), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _lsprof_Profiler_getstats__doc__},
|
|
|
|
static PyObject *
|
|
_lsprof_Profiler_getstats_impl(ProfilerObject *self, PyTypeObject *cls);
|
|
|
|
static PyObject *
|
|
_lsprof_Profiler_getstats(ProfilerObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
|
{
|
|
if (nargs) {
|
|
PyErr_SetString(PyExc_TypeError, "getstats() takes no arguments");
|
|
return NULL;
|
|
}
|
|
return _lsprof_Profiler_getstats_impl(self, cls);
|
|
}
|
|
/*[clinic end generated code: output=0615a53cce828f06 input=a9049054013a1b77]*/
|