diff options
-rw-r--r-- | Lib/test/test_typing.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index a360824717..b39efcf019 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -1471,6 +1471,8 @@ class AllTests(TestCase): # Spot-check that stdlib modules aren't exported. assert 'os' not in a assert 'sys' not in a + # Check that Text is defined. + assert 'Text' in a if __name__ == '__main__': |