summaryrefslogtreecommitdiff
path: root/numpy/lib
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-05-12 10:12:21 -0600
committerCharles Harris <charlesr.harris@gmail.com>2016-05-12 10:12:21 -0600
commite209a18b0121fca361e6cb186076c61de4b50f3a (patch)
treef9e03d08f32addb3f068ceb74aec9f80f3a2b869 /numpy/lib
parenta7e9f4579fa14a3b72af6e723bcbe5549cd6f1c1 (diff)
parenteb8913d1a39e09b739a6e9449dc841a52ecbac37 (diff)
downloadnumpy-e209a18b0121fca361e6cb186076c61de4b50f3a.tar.gz
Merge pull request #7626 from endolith/patch-1
DOC: RST definition list fixes
Diffstat (limited to 'numpy/lib')
-rw-r--r--numpy/lib/function_base.py2
-rw-r--r--numpy/lib/polynomial.py2
-rw-r--r--numpy/lib/utils.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index e858ad1c3..8f15fc547 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -57,7 +57,7 @@ def flip(m, axis):
----------
m : array_like
Input array.
- axis: integer
+ axis : integer
Axis in array, which entries are reversed.
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py
index 189e59154..c0ab80ee8 100644
--- a/numpy/lib/polynomial.py
+++ b/numpy/lib/polynomial.py
@@ -439,7 +439,7 @@ def polyfit(x, y, deg, rcond=None, full=False, w=None, cov=False):
Polynomial coefficients, highest power first. If `y` was 2-D, the
coefficients for `k`-th data set are in ``p[:,k]``.
- residuals, rank, singular_values, rcond :
+ residuals, rank, singular_values, rcond
Present only if `full` = True. Residuals of the least-squares fit,
the effective rank of the scaled Vandermonde coefficient matrix,
its singular values, and the specified value of `rcond`. For more
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py
index 3f29699e9..a2191468f 100644
--- a/numpy/lib/utils.py
+++ b/numpy/lib/utils.py
@@ -393,9 +393,9 @@ def _info(obj, output=sys.stdout):
Parameters
----------
- obj: ndarray
+ obj : ndarray
Must be ndarray, not checked.
- output:
+ output
Where printed output goes.
Notes