[Python-checkins] r65123 - in doctools/branches/0.4.x: CHANGES TODO sphinx/ext/autodoc.py

georg.brandl python-checkins at python.org
Sat Jul 19 00:49:46 CEST 2008


Author: georg.brandl
Date: Sat Jul 19 00:49:46 2008
New Revision: 65123

Log:
Put inheritance info always on its own line.


Modified:
   doctools/branches/0.4.x/CHANGES
   doctools/branches/0.4.x/TODO
   doctools/branches/0.4.x/sphinx/ext/autodoc.py

Modified: doctools/branches/0.4.x/CHANGES
==============================================================================
--- doctools/branches/0.4.x/CHANGES	(original)
+++ doctools/branches/0.4.x/CHANGES	Sat Jul 19 00:49:46 2008
@@ -1,6 +1,8 @@
 Release 0.4.2 (in development)
 ==============================
 
+* Put inheritance info always on its own line.
+
 * Don't automatically enclose code with whitespace in it in quotes;
   only do this for the ``samp`` role.
 

Modified: doctools/branches/0.4.x/TODO
==============================================================================
--- doctools/branches/0.4.x/TODO	(original)
+++ doctools/branches/0.4.x/TODO	Sat Jul 19 00:49:46 2008
@@ -1,6 +1,9 @@
 Sphinx TODO
 ===========
 
+- specify node visit functions when adding nodes to app
+- allow extensions to add static files
+- decide which static files to include
 - verbose option
 - remove redundant <ul>s in tocs
 - autoattribute in autodoc

Modified: doctools/branches/0.4.x/sphinx/ext/autodoc.py
==============================================================================
--- doctools/branches/0.4.x/sphinx/ext/autodoc.py	(original)
+++ doctools/branches/0.4.x/sphinx/ext/autodoc.py	Sat Jul 19 00:49:46 2008
@@ -398,6 +398,7 @@
                      u':class:`%s.%s`' % (b.__module__, b.__name__)
                      for b in todoc.__bases__]
             result.append(indent + u'   Bases: %s' % ', '.join(bases), '<autodoc>')
+            result.append(u'', '<autodoc>')
 
     # the module directive doesn't have content
     if what != 'module':


More information about the Python-checkins mailing list