further changes to go from wmdocklib to pywmdockapps
This commit is contained in:
parent
7a00d8b440
commit
679ce285b4
@ -1,12 +1,12 @@
|
||||
"""\
|
||||
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 *
|
||||
pywmdockapps is a python module that will help you develop WindowMaker dockapps
|
||||
in python. It is a wrapper around the functions from wmgeneral.c.
|
||||
|
||||
__all__ = ['wmoo']
|
||||
To get help about a contained package, try:
|
||||
help(pywmdockapps.<name>)
|
||||
"""
|
||||
from .pywmgeneral import * from .pywmhelpers import *
|
||||
|
||||
# __all__ controls what 'from pywmdockapps import *' pulls in.
|
||||
# If you want users to see 'pywmgeneral' and 'pywmhelpers' too, add them here.
|
||||
__all__ = ['wmoo', 'pywmgeneral', 'pywmhelpers']
|
||||
|
||||
@ -33,7 +33,7 @@ charset_start = None
|
||||
charset_width = None
|
||||
pattern_start = None
|
||||
|
||||
import wmdocklib.pywmgeneral as pywmgeneral
|
||||
from . import pywmgeneral
|
||||
defaultRGBFileList = [
|
||||
'/etc/X11/rgb.txt',
|
||||
'/usr/lib/X11/rgb.txt',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user