1
0
mirror of https://github.com/gryf/wmdocklib.git synced 2025-12-24 23:22:30 +01:00
Files
wmdocklib/wmdocklib/__init__.py
mfrasca dd13e8ad21 sorry: order of import is relevant.
importing * from pywmhelpers hides the previous imports from pywmgeneral.
2006-10-16 08:24:32 +00:00

13 lines
344 B
Python

"""\
wmdocklib is a python module that will help you develop WindowMaker dockapps
in python. It is mostly a wrapper around the functions from the popular
wmgeneral.c, but some new functions are added too.
to get help about a contained package, try:
help(wmdocklib.<name>)
"""
from pywmgeneral import *
from pywmhelpers import *
__all__ = []