summaryrefslogtreecommitdiff
path: root/src/cython/doc/python3-sphinx-build
diff options
context:
space:
mode:
authormcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-04-12 07:50:07 +0000
committermcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-04-12 07:50:07 +0000
commit9a8649a45f61a9e152f26cb3fcbbdeabec5e0f37 (patch)
tree7a16c67262070914c5351f38bed9941824b1f053 /src/cython/doc/python3-sphinx-build
parent9a4ad421d6faf66c7fa3091340e07e8e61adaae8 (diff)
parent387a5af3ee1b664346eb9686f00c986e9f7a1e3e (diff)
Merged latest trunk changes to Nerve_GIC
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/Nerve_GIC@2336 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 45e06633204b8da3a91751fd510f1639225beb2d
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))