Browse Source

A noble spirit no longer embiggens the smallest function signatures.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8593 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Jacob Kaplan-Moss 16 years ago
parent
commit
e3fad41859
1 changed files with 10 additions and 1 deletions
  1. 10 1
      docs/_ext/djangodocs.py

+ 10 - 1
docs/_ext/djangodocs.py

@@ -79,7 +79,16 @@ class DjangoHTMLTranslator(sphinx.htmlwriter.SmartyPantsHTMLTranslator):
     # Don't use border=1, which docutils does by default.
     def visit_table(self, node):
         self.body.append(self.starttag(node, 'table', CLASS='docutils'))
-        
+    
+    # <big>? Really?
+    def visit_desc_parameterlist(self, node):
+        self.body.append('(')
+        self.first_param = 1
+    
+    def depart_desc_parameterlist(self, node):
+        self.body.append(')')
+        pass
+    
     # Give each section a unique ID -- nice for custom CSS hooks
     # This is different on docutils 0.5 vs. 0.4...