Skip to content
Snippets Groups Projects
Commit 14f36614 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix python3 compatibility issues with doc fix

parent 3ede1910
No related branches found
No related tags found
No related merge requests found
...@@ -178,3 +178,6 @@ def get_include(): ...@@ -178,3 +178,6 @@ def get_include():
"""Returns the directory containing the C/C++ API include directives""" """Returns the directory containing the C/C++ API include directives"""
return __import__('pkg_resources').resource_filename(__name__, 'include') return __import__('pkg_resources').resource_filename(__name__, 'include')
# gets sphinx autodoc done right - don't remove it
__all__ = [_ for _ in dir() if not _.startswith('_')]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment