diff --git a/wmdocklib/README b/wmdocklib/README index e7ed501..c4375c1 100644 --- a/wmdocklib/README +++ b/wmdocklib/README @@ -1,7 +1,7 @@ [wmdocklib.WHAT] -Pywmgeneral is a python module that will help you develope WindowMaker -dockapps in python. It is mostly a wrapper around the functions from the -popular wmgeneral.c, but some new functions are added too. +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. It also contains the Python written module pywmhelpers.py which contains functions to aid the development of wm dockapps. This module contains python diff --git a/wmdocklib/__init__.py b/wmdocklib/__init__.py index 800f115..967b466 100644 --- a/wmdocklib/__init__.py +++ b/wmdocklib/__init__.py @@ -1,2 +1,12 @@ -from pywmgeneral import * +"""\ +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.) +""" from pywmhelpers import * +from pywmgeneral import * + +__all__ = []