Home
last modified time | relevance | path

Searched refs:PyUnicode_FromFormatV (Results 1 – 20 of 20) sorted by relevance

/third_party/python/Include/
Dunicodeobject.h254 PyAPI_FUNC(PyObject *) PyUnicode_FromFormatV(
/third_party/python/Parser/
Dpegen_errors.c298 errstr = PyUnicode_FromFormatV(errmsg, va); in _PyPegen_raise_error_known_location()
Dtokenizer.c1081 errmsg = PyUnicode_FromFormatV(format, vargs); in _syntaxerror_range()
1172 errmsg = PyUnicode_FromFormatV(format, vargs); in parser_warn()
Dpegen.c486 errstr = PyUnicode_FromFormatV(errmsg, va); in _PyPegen_raise_error_known_location()
/third_party/python/Python/
D_warnings.c1118 message = PyUnicode_FromFormatV(format, vargs); in _PyErr_WarnFormatV()
1273 message = PyUnicode_FromFormatV(format, vargs); in PyErr_WarnExplicitFormat()
Derrors.c1059 string = PyUnicode_FromFormatV(format, vargs); in _PyErr_FormatV()
Dhamt.c495 msg = PyUnicode_FromFormatV(format, vargs); in _hamt_dump_format()
Dsysmodule.c3365 message = PyUnicode_FromFormatV(format, va); in sys_format()
Dcompile.c5529 PyObject *msg = PyUnicode_FromFormatV(format, vargs); in compiler_error()
5566 PyObject *msg = PyUnicode_FromFormatV(format, vargs); in compiler_warn()
/third_party/python/Doc/data/
Dstable_abi.dat736 function,PyUnicode_FromFormatV,3.2,
Drefcounts.dat2757 PyUnicode_FromFormatV:PyObject*::+1:
2758 PyUnicode_FromFormatV:const char*:format::
2759 PyUnicode_FromFormatV:va_list:args::
/third_party/python/PC/
Dpython3dll.c659 EXPORT_FUNC(PyUnicode_FromFormatV)
/third_party/python/Doc/c-api/
Dsys.rst283 :c:func:`PyUnicode_FromFormatV` and don't truncate the message to an
Dunicode.rst562 .. c:function:: PyObject* PyUnicode_FromFormatV(const char *format, va_list vargs)
/third_party/python/Modules/_ctypes/
Dcallproc.c1010 s = PyUnicode_FromFormatV(fmt, vargs); in _ctypes_extend_error()
/third_party/python/Misc/
Dstable_abi.txt1426 function PyUnicode_FromFormatV
DHISTORY4358 - Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise
10536 - Issue #10830: Fix PyUnicode_FromFormatV("%c") for non-BMP characters on
12312 write a message formatted by PyUnicode_FromFormatV() to sys.stdout and
12324 use PyUnicode_FromFormatV() to format the warning message.
15383 - Issue #5108: Handle %s like %S, %R and %A in PyUnicode_FromFormatV(): Call
/third_party/python/Modules/
D_asynciomodule.c2559 msg = PyUnicode_FromFormatV(format, vargs); in task_set_error_soon()
/third_party/python/Objects/
Dexceptions.c3022 msg_prefix = PyUnicode_FromFormatV(format, vargs); in _PyErr_TrySetFromCause()
Dunicodeobject.c3139 PyUnicode_FromFormatV(const char *format, va_list vargs) in PyUnicode_FromFormatV() function
3206 ret = PyUnicode_FromFormatV(format, vargs); in PyUnicode_FromFormat()