- Use vertical layout for Graphviz-generated class inheritance diagrams (to get the old behaviour back, change the rankdir arguments from "TB" to "LR" in the inheritance.py script;

- Do not generate module-level inheritance diagrams anymore;
- Correct a few ReST typos in `newevent.py`, `expando.py` and `buttons`;
- Include a toctree ReST reference to `classic_vs_phoenix.txt` in the `MigrationGuide.txt` document, to stop Sphinx complaining about it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Andrea Gavana
2012-07-17 15:28:20 +00:00
parent dca339e4a0
commit 2037469921
6 changed files with 25 additions and 8 deletions

View File

@@ -590,6 +590,11 @@ class Module(ParentBase):
stream.write(newtext + '\n\n')
spacer = ' '*self.name.count('.')
# IMPORTANT!!
# Remove this line to get back the inheritance diagram for a module
#
self.inheritance_diagram = None
if self.kind != object_types.PACKAGE:
print(('%s - %s (module)'%(spacer, self.name)))