/third_party/python/Include/ |
D | warnings.h | 11 PyAPI_FUNC(int) PyErr_WarnEx( 56 #define PyErr_Warn(category, msg) PyErr_WarnEx(category, msg, 1)
|
/third_party/python/Modules/_io/ |
D | _iomodule.c | 331 if (PyErr_WarnEx(PyExc_DeprecationWarning, in _io_open_impl() 368 if (PyErr_WarnEx(PyExc_RuntimeWarning, in _io_open_impl() 535 if (PyErr_WarnEx(PyExc_EncodingWarning, in _io_text_encoding_impl()
|
D | textio.c | 1091 if (PyErr_WarnEx(PyExc_EncodingWarning, in _io_TextIOWrapper___init___impl()
|
/third_party/python/Modules/ |
D | binascii.c | 622 if (PyErr_WarnEx(PyExc_DeprecationWarning, in binascii_a2b_hqx_impl() 715 if (PyErr_WarnEx(PyExc_DeprecationWarning, in binascii_rlecode_hqx_impl() 782 if (PyErr_WarnEx(PyExc_DeprecationWarning, in binascii_b2a_hqx_impl() 842 if (PyErr_WarnEx(PyExc_DeprecationWarning, in binascii_rledecode_hqx_impl()
|
D | _asynciomodule.c | 334 if (PyErr_WarnEx(PyExc_DeprecationWarning, in get_event_loop()
|
D | _tkinter.c | 2360 if (PyErr_WarnEx(PyExc_DeprecationWarning, in _tkinter_tkapp_split()
|
D | _elementtree.c | 3543 (void)PyErr_WarnEx(PyExc_RuntimeWarning, in expat_start_doctype_handler()
|
D | _ssl.c | 701 return PyErr_WarnEx( in _ssl_deprecated()
|
D | socketmodule.c | 3874 if (PyErr_WarnEx(PyExc_RuntimeWarning, in sock_recvmsg_guts()
|
/third_party/python/Python/ |
D | thread.c | 85 if (PyErr_WarnEx(PyExc_DeprecationWarning, in _PyThread_debug_deprecation()
|
D | structmember.c | 100 if (PyErr_WarnEx(PyExc_RuntimeWarning, msg, 1) < 0) \
|
D | _warnings.c | 1181 PyErr_WarnEx(PyObject *category, const char *text, Py_ssize_t stack_level) in PyErr_WarnEx() function 1200 return PyErr_WarnEx(category, text, 1); in PyErr_Warn()
|
D | import.c | 1371 if (PyErr_WarnEx(PyExc_ImportWarning, in resolve_name() 1390 if (PyErr_WarnEx(PyExc_ImportWarning, in resolve_name()
|
/third_party/python/Modules/_ctypes/ |
D | callbacks.c | 290 if (-1 == PyErr_WarnEx(PyExc_RuntimeWarning, in _CallPythonObject()
|
/third_party/python/Objects/ |
D | bytesobject.c | 1376 if (PyErr_WarnEx(PyExc_BytesWarning, in bytes_str() 1534 if (PyErr_WarnEx(PyExc_BytesWarning, in bytes_richcompare() 1539 if (PyErr_WarnEx(PyExc_BytesWarning, in bytes_richcompare()
|
D | bytearrayobject.c | 996 if (PyErr_WarnEx(PyExc_BytesWarning, in bytearray_str() 1014 if (PyErr_WarnEx(PyExc_BytesWarning, in bytearray_richcompare()
|
D | object.c | 1716 if (PyErr_WarnEx(PyExc_DeprecationWarning, in notimplemented_bool()
|
D | unicodeobject.c | 2201 if (PyErr_WarnEx(PyExc_DeprecationWarning, in PyUnicode_FromUnicode() 2313 if (PyErr_WarnEx(PyExc_DeprecationWarning, in PyUnicode_FromStringAndSize() 3699 if (PyErr_WarnEx(PyExc_DeprecationWarning, in PyUnicode_AsDecodedObject() 3723 if (PyErr_WarnEx(PyExc_DeprecationWarning, in PyUnicode_AsDecodedUnicode() 3778 if (PyErr_WarnEx(PyExc_DeprecationWarning, in PyUnicode_AsEncodedObject() 4001 if (PyErr_WarnEx(PyExc_DeprecationWarning, in PyUnicode_AsEncodedUnicode() 15896 if (PyErr_WarnEx(PyExc_DeprecationWarning, in PyUnicode_InternImmortal()
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 734 PyErr_WarnEx:int::: 735 PyErr_WarnEx:PyObject*:category:0: 736 PyErr_WarnEx:const char*:message:: 737 PyErr_WarnEx:Py_ssize_t:stack_level::
|
D | stable_abi.dat | 163 function,PyErr_WarnEx,3.2,
|
/third_party/python/Doc/c-api/ |
D | exceptions.rst | 304 .. c:function:: int PyErr_WarnEx(PyObject *category, const char *message, Py_ssize_t stack_level) 310 is the function calling :c:func:`PyErr_WarnEx`, 2 is the function above that, 351 Function similar to :c:func:`PyErr_WarnEx`, but use
|
/third_party/python/PC/ |
D | python3dll.c | 227 EXPORT_FUNC(PyErr_WarnEx)
|
/third_party/python/Doc/library/ |
D | warnings.rst | 19 in this module. (C programmers use :c:func:`PyErr_WarnEx`; see
|
/third_party/python/Misc/ |
D | stable_abi.txt | 564 function PyErr_WarnEx
|
/third_party/python/Doc/whatsnew/ |
D | 2.5.rst | 2185 favour of ``PyErr_WarnEx(category, message, stacklevel)`` which lets you 2187 *stacklevel* of 1 is the function calling :c:func:`PyErr_WarnEx`, 2 is the
|