PyErr_Warn is decrepated. Use PyErr_WarnEx
diff --git a/Doc/library/warnings.rst b/Doc/library/warnings.rst
index 076d357..d2e5b68 100644
--- a/Doc/library/warnings.rst
+++ b/Doc/library/warnings.rst
@@ -16,7 +16,7 @@
might want to issue a warning when a program uses an obsolete module.
Python programmers issue warnings by calling the :func:`warn` function defined
-in this module. (C programmers use :cfunc:`PyErr_Warn`; see
+in this module. (C programmers use :cfunc:`PyErr_WarnEx`; see
:ref:`exceptionhandling` for details).
Warning messages are normally written to ``sys.stderr``, but their disposition