diff options
author | Pauli Virtanen <pav@iki.fi> | 2009-03-29 01:37:45 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2009-03-29 01:37:45 +0000 |
commit | d7f1ae929c99c71dee6a7a950937608ddbe92fce (patch) | |
tree | a7096437b38f6a84dc0a3a5ce6a36e5e0991dfc2 /numpy/testing/decorators.py | |
parent | e89b62aaaacebe1ba23bcbb6f84bea20c0f12be2 (diff) | |
download | numpy-d7f1ae929c99c71dee6a7a950937608ddbe92fce.tar.gz |
Fix another docstring formatting
Diffstat (limited to 'numpy/testing/decorators.py')
-rw-r--r-- | numpy/testing/decorators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/decorators.py b/numpy/testing/decorators.py index 90bf27b96..15788141c 100644 --- a/numpy/testing/decorators.py +++ b/numpy/testing/decorators.py @@ -50,7 +50,7 @@ def skipif(skip_condition, msg=None): ''' Make function raise SkipTest exception if skip_condition is true Parameters - --------- + ---------- skip_condition : bool or callable. Flag to determine whether to skip test. If the condition is a callable, it is used at runtime to dynamically make the decision. This |