Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c316a60

Browse files
committed
Fix docstring format for check_funcs_once.
1 parent a213a22 commit c316a60

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

numpy/distutils/command/config.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -200,22 +200,22 @@ def check_funcs_once(self, funcs,
200200
201201
Arguments
202202
---------
203-
204-
funcs: seq
205-
list of functions to test
206-
include_dirs : seq
207-
list of header paths
208-
libraries : seq
209-
list of libraries to link the code snippet to
210-
libraru_dirs : seq
211-
list of library paths
212-
decl : dict
213-
for every (key, value), the declaration in the value will be
214-
used for function in key. If a function is not in the
215-
dictionay, no declaration will be used.
216-
call : dict
217-
for every item (f, value), if the value is True, a call will be
218-
done to the function f"""
203+
funcs: seq
204+
list of functions to test
205+
include_dirs : seq
206+
list of header paths
207+
libraries : seq
208+
list of libraries to link the code snippet to
209+
libraru_dirs : seq
210+
list of library paths
211+
decl : dict
212+
for every (key, value), the declaration in the value will be
213+
used for function in key. If a function is not in the
214+
dictionay, no declaration will be used.
215+
call : dict
216+
for every item (f, value), if the value is True, a call will be
217+
done to the function f.
218+
"""
219219
self._check_compiler()
220220
body = []
221221
if decl:

0 commit comments

Comments
 (0)