blob: 68fad230065943663d7bcbc3290f1631dc280a12 [file] [log] [blame]
Victor Stinner22f18752016-12-09 18:08:18 +01001/*[clinic input]
2preserve
3[clinic start generated code]*/
4
5PyDoc_STRVAR(warnings_warn__doc__,
6"warn($module, /, message, category=None, stacklevel=1, source=None)\n"
7"--\n"
8"\n"
9"Issue a warning, or maybe ignore it or raise an exception.");
10
11#define WARNINGS_WARN_METHODDEF \
Serhiy Storchaka6969eaf2017-07-03 21:20:15 +030012 {"warn", (PyCFunction)warnings_warn, METH_FASTCALL|METH_KEYWORDS, warnings_warn__doc__},
Victor Stinner22f18752016-12-09 18:08:18 +010013
14static PyObject *
15warnings_warn_impl(PyObject *module, PyObject *message, PyObject *category,
16 Py_ssize_t stacklevel, PyObject *source);
17
18static PyObject *
Serhiy Storchakaa5552f02017-12-15 13:11:11 +020019warnings_warn(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
Victor Stinner22f18752016-12-09 18:08:18 +010020{
21 PyObject *return_value = NULL;
22 static const char * const _keywords[] = {"message", "category", "stacklevel", "source", NULL};
23 static _PyArg_Parser _parser = {"O|OnO:warn", _keywords, 0};
24 PyObject *message;
25 PyObject *category = Py_None;
26 Py_ssize_t stacklevel = 1;
27 PyObject *source = Py_None;
28
Victor Stinner3e1fad62017-01-17 01:29:01 +010029 if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
Victor Stinner22f18752016-12-09 18:08:18 +010030 &message, &category, &stacklevel, &source)) {
31 goto exit;
32 }
33 return_value = warnings_warn_impl(module, message, category, stacklevel, source);
34
35exit:
36 return return_value;
37}
Serhiy Storchakaa5552f02017-12-15 13:11:11 +020038/*[clinic end generated code: output=86369ece63001d78 input=a9049054013a1b77]*/