From: aetracht Date: Mon, 19 Mar 2018 18:41:32 +0000 (-0400) Subject: bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) X-Git-Tag: v3.8.0a1~2074 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4573820d2a9156346392838d455e89f33067e9dd;p=thirdparty%2FPython%2Fcpython.git bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) --- diff --git a/Lib/typing.py b/Lib/typing.py index 7ca080402e28..56126cfc0247 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 000000000000..b82ffb73a143 --- /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