summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@dropbox.com>2016-04-18 00:53:50 (GMT)
committerGuido van Rossum <guido@dropbox.com>2016-04-18 00:53:50 (GMT)
commitf0f1d365c8b60ae2549d1e2b2ee498af97a0adb7 (patch)
treea0504abcffd090638b0dda267f129a1c6fc5c4b3 /Lib
parent55c861f637f8d82ac74e5b86a9361ed68d8be3f9 (diff)
parent6aafbd433dbca6c11f41f1fc55d4304d2d98d6f5 (diff)
downloadcpython-f0f1d365c8b60ae2549d1e2b2ee498af97a0adb7.zip
cpython-f0f1d365c8b60ae2549d1e2b2ee498af97a0adb7.tar.gz
cpython-f0f1d365c8b60ae2549d1e2b2ee498af97a0adb7.tar.bz2
Sync test_typing.py with upstream git repo (typing.py was already synced). (3.5->3.6)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_typing.py2
1 files changed, 2 insertions, 0 deletions
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 @@ 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__':