summaryrefslogtreecommitdiff
path: root/docs/doxygen
diff options
context:
space:
mode:
authorMarcus Mueller <gr@mueller-marcus.eu>2012-02-10 11:13:46 -0500
committerTom Rondeau <trondeau@vt.edu>2012-02-10 11:13:46 -0500
commit39f86af88f9ed7d0ff922aab5bb7c9da95f2c730 (patch)
tree8b6d627d446876cfb9c3a619d83536c90fdd8081 /docs/doxygen
parentdc339fb8c9455ac5089749d7e1d695e0d3642559 (diff)
docs: swig_docs don't look at operators when building Python documentation.
Diffstat (limited to 'docs/doxygen')
-rw-r--r--docs/doxygen/swig_doc.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/doxygen/swig_doc.py b/docs/doxygen/swig_doc.py
index 4148a546b3..cac784cfe4 100644
--- a/docs/doxygen/swig_doc.py
+++ b/docs/doxygen/swig_doc.py
@@ -98,6 +98,8 @@ def make_entry(obj, name=None, templ="{description}", description=None):
"""
if name is None:
name=obj.name()
+ if "operator " in name:
+ return ''
if description is None:
description = combine_descriptions(obj)
docstring = templ.format(description=description)