]> granicus.if.org Git - python/commitdiff
bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) (#6162)
authorIvan Levkivskyi <levkivskyi@gmail.com>
Fri, 23 Mar 2018 21:44:54 +0000 (21:44 +0000)
committerGitHub <noreply@github.com>
Fri, 23 Mar 2018 21:44:54 +0000 (21:44 +0000)
Lib/typing.py
Misc/NEWS.d/next/Library/2018-03-16-16-07-33.bpo-33061.TRTTek.rst [new file with mode: 0644]

index 7ca080402e28ac9181592bfd04bac8851d172352..56126cfc02470e886c2eb9affce3027196c142f1 100644 (file)
@@ -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 (file)
index 0000000..b82ffb7
--- /dev/null
@@ -0,0 +1 @@
+Add missing ``NoReturn`` to ``__all__`` in typing.py