diff options
author | Robert McGibbon <rmcgibbo@gmail.com> | 2015-03-01 22:53:19 -0800 |
---|---|---|
committer | Robert McGibbon <rmcgibbo@gmail.com> | 2015-03-02 12:00:18 -0800 |
commit | 6ca778d275ade854cfc81a6a975230c4ccd9402c (patch) | |
tree | bbabe2a612cb69b4fd6fa33926383804a11e0c33 /numpy/testing/nosetester.py | |
parent | fba3140f31e67487666529e66241047517a72bcb (diff) | |
download | numpy-6ca778d275ade854cfc81a6a975230c4ccd9402c.tar.gz |
DOC: Reconcile docstrings and function signatures where they disagree
Fixed typos in docstrings were updated for functions where the parameter
names in the docstring didn't match the function signature.
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r-- | numpy/testing/nosetester.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index b802f4472..fb1f507f0 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -84,10 +84,10 @@ def run_module_suite(file_to_run=None, argv=None): Parameters ---------- - file_to_run: str, optional + file_to_run : str, optional Path to test module, or None. By default, run the module from which this function is called. - argv: list of strings + argv : list of strings Arguments to be passed to the nose test runner. ``argv[0]`` is ignored. All command line arguments accepted by ``nosetests`` will work. If it is the default value None, sys.argv is used. |