A
lgorithmique
N
umérique
D
istribuée
Public GIT Repository
projects
/
simgrid.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
doc: try to fix the readthedoc build
[simgrid.git]
/
docs
/
source
/
_ext
/
javasphinx-apidoc
1
#!/usr/bin/python3
2
3
# -*- coding: utf-8 -*-
4
import re
5
import sys
6
7
from javasphinx.apidoc import main
8
9
if __name__ == '__main__':
10
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
11
sys.exit(main())