summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-12-25 21:50:45 +0100
committerGeorg Brandl <georg@python.org>2008-12-25 21:50:45 +0100
commitfca6a2e59767a66110e1c66b67e29cc268f062ad (patch)
treecdd051483bd61f563a02f6450f8bdaae9bbf0f82 /tests
parentad10dcee22bd8cef154567646edeeca6f9327fcb (diff)
downloadsphinx-fca6a2e59767a66110e1c66b67e29cc268f062ad.tar.gz
Handle class aliases (like ``class Foo: factory = dict``) better in autodoc.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_autodoc.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py
index 20ac34ce..facb275a 100644
--- a/tests/test_autodoc.py
+++ b/tests/test_autodoc.py
@@ -420,3 +420,5 @@ class Outer(object):
def meth(self):
"""Foo"""
+
+ factory = dict