mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
c7d287e5b5
git-svn-id: http://svn.pyinstaller.org/trunk@485 8dd32b29-ccff-0310-8a9a-9233e24343b1
8 lines
131 B
Python
8 lines
131 B
Python
""" pkg1 replaces itself with pkg2"""
|
|
|
|
__all__ = ["a", "b"]
|
|
import pkg2
|
|
import sys
|
|
sys.modules[__name__] = pkg2
|
|
from pkg2 import *
|