commit | b3a9843cd19039808a812ca11206881c94c64e3b | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Fri May 24 15:16:08 2019 +0200 |
committer | GitHub <noreply@github.com> | Fri May 24 15:16:08 2019 +0200 |
tree | ee801eaed47ba95e99592e26d8c5b041b992bcf7 | |
parent | b4bdecd0fc9112b60a81fec171bc78bc13f2f59c [diff] [blame] |
Support Py_UNUSED() on clang (GH-13544)
diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index b003bba..672936a 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst
@@ -156,7 +156,7 @@ .. c:macro:: Py_UNUSED(arg) Use this for unused arguments in a function definition to silence compiler - warnings, e.g. ``PyObject* func(PyObject *Py_UNUSED(ignored))``. + warnings. Example: ``int func(int a, int Py_UNUSED(b)) { return a; }``. .. versionadded:: 3.4