diff options
author | Rohit Goswami <r95g10@gmail.com> | 2021-09-29 21:15:52 +0000 |
---|---|---|
committer | Rohit Goswami <rog32@hi.is> | 2021-09-30 19:11:10 +0000 |
commit | 9492206648befbf6a665f310f4ba1a69e25862ca (patch) | |
tree | 9bec2494e3c8557ba5c4d19c529596301e74a750 /numpy/f2py/tests | |
parent | 85ce7a20b243555e9672b9d9e4cc0c7d7e6e0f2e (diff) | |
download | numpy-9492206648befbf6a665f310f4ba1a69e25862ca.tar.gz |
MAINT: Reviewer comments
Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
Diffstat (limited to 'numpy/f2py/tests')
-rw-r--r-- | numpy/f2py/tests/test_callback.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/f2py/tests/test_callback.py b/numpy/f2py/tests/test_callback.py index 44ee81a92..d07e98357 100644 --- a/numpy/f2py/tests/test_callback.py +++ b/numpy/f2py/tests/test_callback.py @@ -97,7 +97,7 @@ cf2py intent(out) r Other Parameters ---------------- fun_extra_args : input tuple, optional - Default: () + Default: () Returns ------- @@ -107,10 +107,10 @@ cf2py intent(out) r ----- Call-back functions:: - def fun(): return a - Return objects: - a : int -""") + def fun(): return a + Return objects: + a : int + """) assert_equal(self.module.t.__doc__, expected) def check_function(self, name): |