9982ea13b8562996047c96381e96fbc720973fee,docs/conf.py,,run_apidoc,#,285
Before Change
"../versioneer.py"
]
sphinx_apidoc_args = []
if StrictVersion(sphinx.__version__) < StrictVersion("1.7.0"):
sphinx_apidoc_args.append(sphinx.apidoc.__file__)
sphinx_apidoc_args.extend(
After Change
try:
// Sphinx-1.7+
from sphinx.ext import apidoc
apidoc.main(argv)
except ImportError:
from sphinx import apidoc
argv.insert(0, apidoc.__file__)
apidoc.main(argv)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: dask/dask-image
Commit Name: 9982ea13b8562996047c96381e96fbc720973fee
Time: 2018-06-18
Author: jakirkham@gmail.com
File Name: docs/conf.py
Class Name:
Method Name: run_apidoc
Project Name: albu/albumentations
Commit Name: 9bc517732374321e907a16a1f9ea2674a8251589
Time: 2020-05-01
Author: dipetm@gmail.com
File Name: tools/make_transforms_docs.py
Class Name:
Method Name:
Project Name: GoogleCloudPlatform/ml-on-gcp
Commit Name: 8079adae33711e4886a625df3f0ae9860739f7b9
Time: 2019-09-03
Author: yuhanliu@google.com
File Name: example_zoo/tools/process.py
Class Name:
Method Name: