summaryrefslogtreecommitdiff
path: root/cython/doc/python3-sphinx-build
diff options
context:
space:
mode:
Diffstat (limited to 'cython/doc/python3-sphinx-build')
-rwxr-xr-xcython/doc/python3-sphinx-build11
1 files changed, 11 insertions, 0 deletions
diff --git a/cython/doc/python3-sphinx-build b/cython/doc/python3-sphinx-build
new file mode 100755
index 00000000..44b94169
--- /dev/null
+++ b/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))