From 5dfbb4d50333e7a91fc0cd8c03a2f2f2cf56dbd9 Mon Sep 17 00:00:00 2001 From: Hansraj Das Date: Tue, 8 Oct 2019 14:26:07 +0530 Subject: [PATCH] Fix typo in _warnings.warn_explicit() docstring (GH-16625) --- Python/_warnings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/_warnings.c b/Python/_warnings.c index ecee399db6e..dd2b072d416 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -1305,7 +1305,7 @@ _PyErr_WarnUnawaitedCoroutine(PyObject *coro) } PyDoc_STRVAR(warn_explicit_doc, -"Low-level inferface to warnings functionality."); +"Low-level interface to warnings functionality."); static PyMethodDef warnings_functions[] = { WARNINGS_WARN_METHODDEF