From 14f366143a5af1e4f5f7c065fbf340f758c5f9e2 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Mon, 17 Mar 2014 09:14:59 +0100
Subject: [PATCH] Fix python3 compatibility issues with doc fix

---
 xbob/io/__init__.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/xbob/io/__init__.py b/xbob/io/__init__.py
index ed91fcb..5f700b1 100644
--- a/xbob/io/__init__.py
+++ b/xbob/io/__init__.py
@@ -178,3 +178,6 @@ def get_include():
   """Returns the directory containing the C/C++ API include directives"""
 
   return __import__('pkg_resources').resource_filename(__name__, 'include')
+
+# gets sphinx autodoc done right - don't remove it
+__all__ = [_ for _ in dir() if not _.startswith('_')]
-- 
GitLab