Files
pyinstaller/pyi_optik/__init__.py
T
giovannibajo 2b62d48d60 Fix ticket #24: rename internal optparse to pyi_optparse,
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
2009-03-04 14:51:18 +00:00

36 lines
962 B
Python

"""optik
A powerful, extensible, and easy-to-use command-line parser for Python.
By Greg Ward <gward@python.net>
See http://optik.sourceforge.net/
"""
# Copyright (c) 2001-2004 Gregory P. Ward. All rights reserved.
# See the README.txt distributed with Optik for licensing terms.
__revision__ = "$Id: __init__.py 472 2004-12-07 01:45:55Z gward $"
__version__ = "1.5"
# Re-import these for convenience
from pyi_optik.option import Option
from pyi_optik.option_parser import *
from pyi_optik.help import *
from pyi_optik.errors import *
from pyi_optik import option, option_parser, help, errors
__all__ = (option.__all__ +
option_parser.__all__ +
help.__all__ +
errors.__all__)
# Some day, there might be many Option classes. As of Optik 1.3, the
# preferred way to instantiate Options is indirectly, via make_option(),
# which will become a factory function when there are many Option
# classes.
make_option = Option