diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-10-08 09:16:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-08 09:16:06 (GMT) |
commit | aa9d5b8ec33fd647ed9a0fe113e60ff826bea49a (patch) | |
tree | 4f4380071b92e91cd0b7c30eabe4c241d1a990ad /Python | |
parent | 4880e5a1b66d9175fcc402cb0288bc1898356831 (diff) | |
download | cpython-aa9d5b8ec33fd647ed9a0fe113e60ff826bea49a.zip cpython-aa9d5b8ec33fd647ed9a0fe113e60ff826bea49a.tar.gz cpython-aa9d5b8ec33fd647ed9a0fe113e60ff826bea49a.tar.bz2 |
Fix typo in _warnings.warn_explicit() docstring (GH-16625)
(cherry picked from commit 5dfbb4d50333e7a91fc0cd8c03a2f2f2cf56dbd9)
Co-authored-by: Hansraj Das <raj.das.136@gmail.com>
Diffstat (limited to 'Python')
-rw-r--r-- | Python/_warnings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c index 0b19258..e02d283 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 |