]> granicus.if.org Git - python/commit
issue 14660: Implement PEP 420, namespace packages.
authorEric V. Smith <eric@trueblade.com>
Fri, 25 May 2012 00:21:04 +0000 (20:21 -0400)
committerEric V. Smith <eric@trueblade.com>
Fri, 25 May 2012 00:21:04 +0000 (20:21 -0400)
commit984b11f88fcace98e30decc19bbf9e281355e607
tree613a0fb564da71c5fc84e9343813f87619591732
parentfa52cbd5e6210f257de40aab12d55d84d64bdb91
issue 14660: Implement PEP 420, namespace packages.
25 files changed:
Lib/importlib/_bootstrap.py
Lib/importlib/test/frozen/test_loader.py
Lib/importlib/test/source/test_finder.py
Lib/pkgutil.py
Lib/test/namespace_pkgs/both_portions/foo/one.py [new file with mode: 0644]
Lib/test/namespace_pkgs/both_portions/foo/two.py [new file with mode: 0644]
Lib/test/namespace_pkgs/missing_directory.zip [new file with mode: 0644]
Lib/test/namespace_pkgs/nested_portion1.zip [new file with mode: 0644]
Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py [new file with mode: 0644]
Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/one.py [new file with mode: 0644]
Lib/test/namespace_pkgs/portion1/foo/one.py [new file with mode: 0644]
Lib/test/namespace_pkgs/portion2/foo/two.py [new file with mode: 0644]
Lib/test/namespace_pkgs/project1/parent/child/one.py [new file with mode: 0644]
Lib/test/namespace_pkgs/project2/parent/child/two.py [new file with mode: 0644]
Lib/test/namespace_pkgs/project3/parent/child/three.py [new file with mode: 0644]
Lib/test/namespace_pkgs/top_level_portion1.zip [new file with mode: 0644]
Lib/test/test_frozen.py
Lib/test/test_import.py
Lib/test/test_module.py
Lib/test/test_namespace_pkgs.py [new file with mode: 0644]
Lib/test/test_pkgutil.py
Misc/NEWS
Modules/zipimport.c
Objects/moduleobject.c
Python/importlib.h