Home
last modified time | relevance | path

Searched refs:PyObject_Format (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Include/
Dabstract.h623 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject* obj,
/external/python/cpython3/Include/
Dabstract.h582 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject *obj,
/external/python/cpython3/PC/
Dpython3.def461 PyObject_Format=python37.PyObject_Format
/external/python/cpython2/Objects/stringlib/
Dstring_format.h605 result = PyObject_Format(fieldobj, format_spec_object); in render_field()
/external/python/cpython3/Objects/stringlib/
Dunicode_format.h531 result = PyObject_Format(fieldobj, format_spec_object); in render_field()
/external/python/cpython3/Python/
Dbltinmodule.c703 return PyObject_Format(value, format_spec); in builtin_format_impl()
Dceval.c3300 result = PyObject_Format(value, fmt_spec); in _PyEval_EvalFrameDefault()
/external/python/cpython3/Objects/
Dabstract.c698 PyObject_Format(PyObject *obj, PyObject *format_spec) in PyObject_Format() function
/external/python/cpython2/Python/
Dbltinmodule.c369 return PyObject_Format(value, format_spec); in builtin_format()
/external/python/cpython2/Objects/
Dabstract.c724 PyObject_Format(PyObject* obj, PyObject *format_spec) function
Dtypeobject.c3643 result = PyObject_Format(self_as_str, format_spec);
/external/python/cpython3/Doc/library/
Ddis.rst1186 Formatting is performed using :c:func:`PyObject_Format`. The
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst76 string.Formatter; and the C API PyObject_Format().