Added feeble test for reload() of packages and submodules.

This commit is contained in:
Guido van Rossum 1997-09-06 19:58:53 +00:00
parent 222ef56bbf
commit 81da02e6aa
2 changed files with 5 additions and 0 deletions

View file

@ -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", [