Don't lose the newlines from the docstring of a PyMethodDef

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74113 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-06-06 01:59:04 +00:00
parent 803aace8ab
commit df8589a8cd

View File

@@ -3245,7 +3245,7 @@ class SphinxGenerator(generators.DocsGeneratorBase):
arguments, after = line.strip().split("->")
return_type = self.ReturnSection(after)
else:
docstrings += line
docstrings += line + '\n'
docstrings = ConvertToPython(docstrings)