diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-05-26 13:30:26 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-05-26 13:30:26 -0400 |
| commit | ba299476b827ada34d01360e3024f87dd56dc967 (patch) | |
| tree | 5f856d3564a90cfee125e39f72d564a86d39619c /doc/build/builder | |
| parent | a3a547324eff14c0247c903cb2aa415123661c29 (diff) | |
| download | sqlalchemy-ba299476b827ada34d01360e3024f87dd56dc967.tar.gz | |
- get all comparison operators to document with sphinx - column based, relationship based.
Should fix misunderstandings like [ticket:2177]
Diffstat (limited to 'doc/build/builder')
| -rw-r--r-- | doc/build/builder/builders.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/builder/builders.py b/doc/build/builder/builders.py index c96565024..25e283e5d 100644 --- a/doc/build/builder/builders.py +++ b/doc/build/builder/builders.py @@ -158,7 +158,7 @@ class PopupLatexFormatter(LatexFormatter): LatexFormatter.format(self, self._filter_tokens(tokensource), outfile) def autodoc_skip_member(app, what, name, obj, skip, options): - if what == 'class' and skip and name == '__init__': + if what == 'class' and skip and name in ('__init__', '__eq__', '__ne__', '__lt__', '__le__') and obj.__doc__: return False else: return skip |
