From ac5602746ed39ca6591e98e062e587121ac71371 Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Fri, 23 Mar 2018 21:44:54 +0000 Subject: [PATCH] bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) (#6162) --- Lib/typing.py | 1 + .../NEWS.d/next/Library/2018-03-16-16-07-33.bpo-33061.TRTTek.rst | 1 + 2 files changed, 2 insertions(+) create mode 100644 Misc/NEWS.d/next/Library/2018-03-16-16-07-33.bpo-33061.TRTTek.rst diff --git a/Lib/typing.py b/Lib/typing.py index 7ca080402e..56126cfc02 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -95,6 +95,7 @@ __all__ = [ 'NewType', 'no_type_check', 'no_type_check_decorator', + 'NoReturn', 'overload', 'Text', 'TYPE_CHECKING', diff --git a/Misc/NEWS.d/next/Library/2018-03-16-16-07-33.bpo-33061.TRTTek.rst b/Misc/NEWS.d/next/Library/2018-03-16-16-07-33.bpo-33061.TRTTek.rst new file mode 100644 index 0000000000..b82ffb73a1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-03-16-16-07-33.bpo-33061.TRTTek.rst @@ -0,0 +1 @@ +Add missing ``NoReturn`` to ``__all__`` in typing.py -- 2.40.0