- clean up doc strings

This commit is contained in:
Werner F Bruhin
2015-02-10 14:49:47 +01:00
parent 4502562142
commit f28fa57348
2 changed files with 7 additions and 4 deletions

View File

@@ -1 +1,4 @@
# package
"""
Currently provides some flag icons based on:
http://www.famfamfam.com/lab/icons/flags
"""

View File

@@ -7,15 +7,15 @@
# Copyright: (c) 2006
# Licence: wxPython
#-----------------------------------------------------------------------------
""" ArtProvider class that publishes images from modules generated by img2py.
"""ArtProvider class that publishes images from modules generated by img2py.
Image modules must be generated with the -u and -n <name> parameters.
Typical usage:
Typical usage::
>>> import wx, wx.lib.art.img2pyartprov, myimagemodule
>>> wx.ArtProvider.PushProvider(wx.lib.art.img2pyartprov.Img2PyArtProvider(myimagemodule))
If myimagemodule.catalog['MYIMAGE'] is defined, it can be accessed as:
If myimagemodule.catalog['MYIMAGE'] is defined, it can be accessed as::
>>> wx.ArtProvider.GetBitmap('wxART_MYIMAGE')
"""