summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-01-12 18:57:04 -0800
committerCharles Harris <charlesr.harris@gmail.com>2013-01-12 18:57:04 -0800
commit23e9f01f54474503f0296e3ff1cb173c6228cb98 (patch)
tree2d868cb4b5525907e7ac5b069c9dc4d4a15e1ecf /numpy/core/numeric.py
parent109f4265566d39553fb830099b7c745ad70adf46 (diff)
parentd4286f864af9b53337186a71b2fca14e75e79b74 (diff)
downloadnumpy-23e9f01f54474503f0296e3ff1cb173c6228cb98.tar.gz
Merge pull request #2909 from argriffing/patch-2
remove a confusing docstring line
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 0d0babbac..521001575 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -67,8 +67,6 @@ def zeros_like(a, dtype=None, order='K', subok=True):
"""
Return an array of zeros with the same shape and type as a given array.
- With default parameters, is equivalent to ``a.copy().fill(0)``.
-
Parameters
----------
a : array_like
@@ -155,8 +153,6 @@ def ones_like(a, dtype=None, order='K', subok=True):
"""
Return an array of ones with the same shape and type as a given array.
- With default parameters, is equivalent to ``a.copy().fill(1)``.
-
Parameters
----------
a : array_like