bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) (#6162)

This commit is contained in:
Ivan Levkivskyi 2018-03-23 21:44:54 +00:00 committed by GitHub
parent 45738ede5a
commit ac5602746e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -95,6 +95,7 @@ __all__ = [
'NewType',
'no_type_check',
'no_type_check_decorator',
'NoReturn',
'overload',
'Text',
'TYPE_CHECKING',

View File

@ -0,0 +1 @@
Add missing ``NoReturn`` to ``__all__`` in typing.py