diff options
Diffstat (limited to 'numpy/doc/DISTUTILS.txt')
-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): |