summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2009-03-29 01:41:22 +0000
committerPauli Virtanen <pav@iki.fi>2009-03-29 01:41:22 +0000
commit2131d92751c32cf69ffe9689c09bb1d5b61013a6 (patch)
tree7fcd11fbb3a3425caa47b9f02ab862cf4c0b072d
parentb6a2b941a35509758784bf9aed308b04dac5f8a5 (diff)
downloadnumpy-2131d92751c32cf69ffe9689c09bb1d5b61013a6.tar.gz
1.3.x backport r6820, r6821: Fix docstring formatting (blocks doc build)
-rw-r--r--numpy/testing/decorators.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/decorators.py b/numpy/testing/decorators.py
index 70301f250..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
@@ -125,7 +125,7 @@ def knownfailureif(fail_condition, msg=None):
''' Make function raise KnownFailureTest exception if fail_condition is true
Parameters
- ---------
+ ----------
fail_condition : bool or callable.
Flag to determine whether to mark test as known failure (True)
or not (False). If the condition is a callable, it is used at