diff options
Diffstat (limited to 'Lib/test/test_pkg.py')
-rw-r--r-- | Lib/test/test_pkg.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_pkg.py b/Lib/test/test_pkg.py index 3210500..9c8e44e 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", [ |