diff options
author | rgommers <ralf.gommers@googlemail.com> | 2011-03-07 10:28:13 +0800 |
---|---|---|
committer | rgommers <ralf.gommers@googlemail.com> | 2011-03-11 12:27:02 +0800 |
commit | 216799cf9caa654a7cb519091dbd6d432b817e51 (patch) | |
tree | c6bd6f9abc9cdb23a309a89a4fbf895da7e6f96c /doc/TESTS.rst.txt | |
parent | ceb9ded475887c25299d798ac90094b74d593a61 (diff) | |
download | python-numpy-216799cf9caa654a7cb519091dbd6d432b817e51.tar.gz python-numpy-216799cf9caa654a7cb519091dbd6d432b817e51.tar.bz2 python-numpy-216799cf9caa654a7cb519091dbd6d432b817e51.zip |
DOC: fix typo in test guidelines.
Diffstat (limited to 'doc/TESTS.rst.txt')
-rw-r--r-- | doc/TESTS.rst.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/TESTS.rst.txt b/doc/TESTS.rst.txt index 936f00a1d..4f2f9e79a 100644 --- a/doc/TESTS.rst.txt +++ b/doc/TESTS.rst.txt @@ -46,7 +46,7 @@ can be turned on (recommended after installation and before upgrading) by starting the interpreter with the -Wd switch, or by:: >>> import warnings - >>> wwarnings.simplefilter('always', DeprecationWarning) + >>> warnings.simplefilter('always', DeprecationWarning) The test method may take two or more arguments; the first is a string label specifying what should be tested and the second is an integer |