From 0231db643d7add769482a17fad1ee3d4d5995ca7 Mon Sep 17 00:00:00 2001 From: mfrasca <> Date: Mon, 16 Oct 2006 07:50:56 +0000 Subject: [PATCH] updated the inline documentation. --- wmdocklib/README | 6 +++--- wmdocklib/__init__.py | 12 +++++++++++- 2 files changed, 14 insertions(+), 4 deletions(-) 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__ = []