In article <[email protected]>,
 Azureaus <[email protected]> wrote:

> To try and make this question as general as possible - is there a way of 
> finding out / visualising where a particular class is called/used throughout 
> a program? 

Sure.

$ cd <top of your source tree>
$ find . -name "*.py" | xargs grep MyClassName.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to