diff options
author | Guido van Rossum <guido@dropbox.com> | 2016-04-17 17:53:50 -0700 |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2016-04-17 17:53:50 -0700 |
commit | f0f1d365c8b60ae2549d1e2b2ee498af97a0adb7 (patch) | |
tree | a0504abcffd090638b0dda267f129a1c6fc5c4b3 | |
parent | 55c861f637f8d82ac74e5b86a9361ed68d8be3f9 (diff) | |
parent | 6aafbd433dbca6c11f41f1fc55d4304d2d98d6f5 (diff) | |
download | cpython-git-f0f1d365c8b60ae2549d1e2b2ee498af97a0adb7.tar.gz |
Sync test_typing.py with upstream git repo (typing.py was already synced). (3.5->3.6)
-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__': |