summaryrefslogtreecommitdiff
path: root/Lib/test/test_pkg.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-09-06 19:58:53 +0000
committerGuido van Rossum <guido@python.org>1997-09-06 19:58:53 +0000
commit81da02e6aa7b3400ef06b76c6329cc0cd0216414 (patch)
tree3d449246bdef70a53f151ff6172bfbbcb6ba8265 /Lib/test/test_pkg.py
parent222ef56bbf30cd1435dffb61f3c41b3a93cda9d3 (diff)
downloadcpython-git-81da02e6aa7b3400ef06b76c6329cc0cd0216414.tar.gz
Added feeble test for reload() of packages and submodules.
Diffstat (limited to 'Lib/test/test_pkg.py')
-rw-r--r--Lib/test/test_pkg.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py
index 32105005bf..9c8e44e953 100644
--- a/Lib/test/test_pkg.py
+++ b/Lib/test/test_pkg.py
@@ -112,6 +112,9 @@ print dir()
"""
import t3.sub.subsub
print t3.__name__, t3.sub.__name__, t3.sub.subsub.__name__
+reload(t3)
+reload(t3.sub)
+reload(t3.sub.subsub)
"""),
("t4", [