srcanamdw/codescanner/pyinstaller/buildtests/pkg1/__init__.py
changeset 1 22878952f6e2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/srcanamdw/codescanner/pyinstaller/buildtests/pkg1/__init__.py	Thu Feb 18 12:29:02 2010 +0530
@@ -0,0 +1,10 @@
+""" pkg1 replaces itself with pkg2"""
+
+__all__ = ["a", "b"]
+import pkg2
+import sys
+sys.modules[__name__] = pkg2
+from pkg2 import *
+
+
+