mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 15:40:17 +00:00
2b62d48d60
to avoid conflicts with Python's own optparse (which is possibly newer) and thus not pick up the wrong one when packaging applications. git-svn-id: http://svn.pyinstaller.org/trunk@642 8dd32b29-ccff-0310-8a9a-9233e24343b1
10 lines
320 B
Python
10 lines
320 B
Python
"""
|
|
optparse -- forward-compatibility wrapper for use with Python 2.2.x and
|
|
earlier. If you import from 'optparse' rather than 'optik', your code
|
|
will work on base Python 2.3 (and later), or on earlier Pythons with
|
|
Optik 1.4.1 or later installed.
|
|
"""
|
|
|
|
from pyi_optik import __version__, __all__
|
|
from pyi_optik import *
|