srcanamdw/codescanner/pyinstaller/buildtests/pkg2/__init__.py
changeset 1 22878952f6e2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/srcanamdw/codescanner/pyinstaller/buildtests/pkg2/__init__.py	Thu Feb 18 12:29:02 2010 +0530
@@ -0,0 +1,9 @@
+""" pkg2 does various namespace tricks, __path__ append """
+
+def notamodule():
+    return "notamodule from pkg2.__init__"
+
+import os
+__path__.append(os.path.join(
+    os.path.dirname(__file__), 'extra'))
+__all__ = ["a", "b", "notamodule"]