diff options
| author | Georg Brandl <georg@python.org> | 2008-12-25 21:50:45 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2008-12-25 21:50:45 +0100 |
| commit | fca6a2e59767a66110e1c66b67e29cc268f062ad (patch) | |
| tree | cdd051483bd61f563a02f6450f8bdaae9bbf0f82 /tests | |
| parent | ad10dcee22bd8cef154567646edeeca6f9327fcb (diff) | |
| download | sphinx-fca6a2e59767a66110e1c66b67e29cc268f062ad.tar.gz | |
Handle class aliases (like ``class Foo: factory = dict``) better in autodoc.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_autodoc.py | 2 |
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 |
