mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
b98a53df92
git-svn-id: http://svn.pyinstaller.org/trunk@2 8dd32b29-ccff-0310-8a9a-9233e24343b1
10 lines
239 B
Python
10 lines
239 B
Python
""" 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"]
|