summaryrefslogtreecommitdiff
path: root/src/cython/doc/python3-sphinx-build
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-28 19:15:44 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-28 19:15:44 +0000
commit1210ddafd2e26e842e66714d92f6dbfc0c3ba003 (patch)
tree89020255f6d6c1ad0230b266865220d98bc10e33 /src/cython/doc/python3-sphinx-build
parent4540f8841fa9b8846012dc3cc7e8a20007d1a97f (diff)
Make Python interface compile, test and doc for Python2 and Python3
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@2267 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: f7397ecc5aba27ad4ecc794f4fbf5ca857847113
Diffstat (limited to 'src/cython/doc/python3-sphinx-build')
-rwxr-xr-xsrc/cython/doc/python3-sphinx-build11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cython/doc/python3-sphinx-build b/src/cython/doc/python3-sphinx-build
new file mode 100755
index 00000000..44b94169
--- /dev/null
+++ b/src/cython/doc/python3-sphinx-build
@@ -0,0 +1,11 @@
+#!/usr/bin/python3
+
+"""
+Emulate sphinx-build for python3
+"""
+
+from sys import exit, argv
+from sphinx import main
+
+if __name__ == '__main__':
+ exit(main(argv))