[Python-checkins] Fix typo in typing.py module docstring (GH-9014)

Miss Islington (bot) webhook-mailer at python.org
Sat Sep 1 05:15:45 EDT 2018


https://github.com/python/cpython/commit/f6d70b8b1708382f09b008bd1cd8792e00b82afb
commit: f6d70b8b1708382f09b008bd1cd8792e00b82afb
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-09-01T05:15:40-04:00
summary:

Fix typo in typing.py module docstring (GH-9014)


"explicitelly" → "explicitly"
(cherry picked from commit 5265b3a98b376684e361b62d0728483b26f493f2)

Co-authored-by: Tim McNamara <code at timmcnamara.co.nz>

files:
M Lib/typing.py

diff --git a/Lib/typing.py b/Lib/typing.py
index 48992633ac34..445a42492b6b 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -2,7 +2,7 @@
 The typing module: Support for gradual typing as defined by PEP 484.
 
 At large scale, the structure of the module is following:
-* Imports and exports, all public names should be explicitelly added to __all__.
+* Imports and exports, all public names should be explicitly added to __all__.
 * Internal helper functions: these should never be used in code outside this module.
 * _SpecialForm and its instances (special forms): Any, NoReturn, ClassVar, Union, Optional
 * Two classes whose instances can be type arguments in addition to types: ForwardRef and TypeVar



More information about the Python-checkins mailing list