In article <9d290db6-b9cb-41af-8107-e7f27d2da...@googlegroups.com>, Azureaus <lo0...@my.bristol.ac.uk> 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