How to read Python with cscope.
find . -name "*.py" > cscope.files
pycscope -i cscope.files
This alone generated cscope.out. The pycscope itself may or may not be in the repository.
You can use cscope as long as you can use cscope.files.
cscope -b
But I feel that the accuracy is better with pycscope.
Ref: http://d.hatena.ne.jp/goinger/20100424/1272134240
Recommended Posts