diff options
author | Robert Kern <robert.kern@gmail.com> | 2008-07-03 08:43:58 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2008-07-03 08:43:58 +0000 |
commit | c8f88c0411203a0d1a09aadef920c563ef54c12a (patch) | |
tree | c56f0999d8202544352b6714d38a599a30ababe8 /numpy/doc | |
parent | 638f015c904d32e0f89604d088731a3ad2daccfd (diff) | |
download | numpy-c8f88c0411203a0d1a09aadef920c563ef54c12a.tar.gz |
Clean up test output such that a completely-passing test suite has no extraneous output.
Diffstat (limited to 'numpy/doc')
-rw-r--r-- | numpy/doc/DISTUTILS.txt | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/numpy/doc/DISTUTILS.txt b/numpy/doc/DISTUTILS.txt index b1a50f376..b2027e619 100644 --- a/numpy/doc/DISTUTILS.txt +++ b/numpy/doc/DISTUTILS.txt @@ -477,15 +477,9 @@ a NumPy package module ``numpy.xxx.yyy`` containing a function import sys from numpy.testing import * - set_package_path() # import xxx symbols - from xxx.yyy import zzz - restore_path() + from numpy.xxx.yyy import zzz - #Optional: - set_local_path() - # import modules that are located in the same directory as this file. - restore_path() class test_zzz(TestCase): def test_simple(self, level=1): |