diff options
author | Eric V. Smith <eric@trueblade.com> | 2012-05-25 00:21:04 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2012-05-25 00:21:04 (GMT) |
commit | 984b11f88fcace98e30decc19bbf9e281355e607 (patch) | |
tree | 613a0fb564da71c5fc84e9343813f87619591732 /Lib/test/test_frozen.py | |
parent | fa52cbd5e6210f257de40aab12d55d84d64bdb91 (diff) | |
download | cpython-984b11f88fcace98e30decc19bbf9e281355e607.zip cpython-984b11f88fcace98e30decc19bbf9e281355e607.tar.gz cpython-984b11f88fcace98e30decc19bbf9e281355e607.tar.bz2 |
issue 14660: Implement PEP 420, namespace packages.
Diffstat (limited to 'Lib/test/test_frozen.py')
-rw-r--r-- | Lib/test/test_frozen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py index dbd229b..fd6761c 100644 --- a/Lib/test/test_frozen.py +++ b/Lib/test/test_frozen.py @@ -7,7 +7,7 @@ import sys class FrozenTests(unittest.TestCase): module_attrs = frozenset(['__builtins__', '__cached__', '__doc__', - '__file__', '__loader__', '__name__', + '__loader__', '__name__', '__package__']) package_attrs = frozenset(list(module_attrs) + ['__path__']) |