commit | f0f1d365c8b60ae2549d1e2b2ee498af97a0adb7 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@dropbox.com> | Sun Apr 17 17:53:50 2016 -0700 |
committer | Guido van Rossum <guido@dropbox.com> | Sun Apr 17 17:53:50 2016 -0700 |
tree | a0504abcffd090638b0dda267f129a1c6fc5c4b3 | |
parent | 55c861f637f8d82ac74e5b86a9361ed68d8be3f9 [diff] | |
parent | 6aafbd433dbca6c11f41f1fc55d4304d2d98d6f5 [diff] |
Sync test_typing.py with upstream git repo (typing.py was already synced). (3.5->3.6)
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index a360824..b39efcf 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py
@@ -1471,6 +1471,8 @@ # 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__':