]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127)
authoraetracht <allen@duolingo.com>
Mon, 19 Mar 2018 18:41:32 +0000 (14:41 -0400)
committerIvan Levkivskyi <levkivskyi@gmail.com>
Mon, 19 Mar 2018 18:41:32 +0000 (18:41 +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