> Do you think we need a way to run just the doctests?
> Before we could
> do "python run_tests.py test_docstring.py" to do
> this.
We could add an option "doctest":
python run_tests.py doctest
runs the doctests only;
python run_tests.py test_Cluster doctest
runs test_Cluster.py and the doctests, etc.
--Michiel