srcanamdw/codescanner/pyinstaller/buildtests/pkg2/__init__.py
changeset 1 22878952f6e2
equal deleted inserted replaced
0:509e4801c378 1:22878952f6e2
       
     1 """ pkg2 does various namespace tricks, __path__ append """
       
     2 
       
     3 def notamodule():
       
     4     return "notamodule from pkg2.__init__"
       
     5 
       
     6 import os
       
     7 __path__.append(os.path.join(
       
     8     os.path.dirname(__file__), 'extra'))
       
     9 __all__ = ["a", "b", "notamodule"]