Put the module docstrings on the module index pages

Plus some other changes to start using using the "wx." prefix on names in the docs. (More are still needed but this is a start.
This commit is contained in:
Robin Dunn
2016-05-19 21:04:14 -07:00
parent 760ebc0878
commit e2f853d0e0
7 changed files with 69 additions and 31 deletions

View File

@@ -87,7 +87,7 @@ class SipWrapperGenerator(generators.WrapperGeneratorBase):
if module.name.startswith('_'):
doc = ''
if module.docstring:
doc = '\n"""\n%s\n"""\n' % module.docstring
doc = '\n"""\n%s"""\n' % module.docstring
stream.write("""\
%%Extract(id=pycode%s, order=5)
# This file is generated by wxPython's SIP generator. Do not edit by hand.