summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2021-05-23 22:54:10 +0300
committerPearu Peterson <pearu.peterson@gmail.com>2021-05-23 22:54:10 +0300
commit5942b33264bf1046074bbd72939ab38e5b6d66af (patch)
tree8e801b64c072ba70912dcca03597894be5f740d8
parent0930786a79ba01492c7db266cd8a501ffad4451a (diff)
downloadnumpy-5942b33264bf1046074bbd72939ab38e5b6d66af.tar.gz
Fix lint
-rw-r--r--numpy/f2py/cfuncs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/f2py/cfuncs.py b/numpy/f2py/cfuncs.py
index 9bd9046b2..4d3ce9088 100644
--- a/numpy/f2py/cfuncs.py
+++ b/numpy/f2py/cfuncs.py
@@ -659,7 +659,8 @@ capi_fail:
needs['string_from_pyobj'] = ['string', 'STRINGMALLOC', 'STRINGCOPYN']
cfuncs['string_from_pyobj'] = """\
/*
- Create a new string buffer `str` of at most length `len` from a Python string-like object `obj`.
+ Create a new string buffer `str` of at most length `len` from a
+ Python string-like object `obj`.
The string buffer has given size (len) or the size of inistr when len==-1.