[Zope-Coders] unit tests and doc strings

Guido van Rossum guido@python.org
Sat, 05 Oct 2002 03:30:22 -0400


> Is there an easy way to find the corresponding tests
> automatically?

find . -name \*test*.py -print | xargs grep '...docstring...'

is the best I've come up with. :-(

--Guido van Rossum (home page: http://www.python.org/~guido/)