summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2008-02-19 19:43:56 +0000
committerStefan van der Walt <stefan@sun.ac.za>2008-02-19 19:43:56 +0000
commit31748384403cc3f58d9607f8ffaa60216a2e7e5d (patch)
tree55a57143f027552ac2fa776b4381f1700fae87d7 /numpy/core/fromnumeric.py
parente6f97dc2f943d4196716376e5d73de7ebb4c9b21 (diff)
downloadnumpy-31748384403cc3f58d9607f8ffaa60216a2e7e5d.tar.gz
Remove 'Blah, blah' from docstrings.
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r--numpy/core/fromnumeric.py20
1 files changed, 1 insertions, 19 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py
index fa2c6d337..9bfaeba4d 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -174,7 +174,7 @@ def repeat(a, repeats, axis=None):
*Parameters*:
a : {array_like}
- Blah.
+ Input array.
repeats : {integer, integer_array}
The number of repetitions for each element. If a plain integer, then
it is applied to all elements. If an array, it needs to be of the
@@ -227,8 +227,6 @@ def put (a, ind, v, mode='raise'):
def swapaxes(a, axis1, axis2):
"""Return array a with axis1 and axis2 interchanged.
- Blah, Blah.
-
"""
try:
swapaxes = a.swapaxes
@@ -986,8 +984,6 @@ def all(a,axis=None, out=None):
def cumsum (a, axis=None, dtype=None, out=None):
"""Sum the array over the given axis.
- Blah, Blah.
-
"""
try:
cumsum = a.cumsum
@@ -999,8 +995,6 @@ def cumsum (a, axis=None, dtype=None, out=None):
def cumproduct (a, axis=None, dtype=None, out=None):
"""Return the cumulative product over the given axis.
- Blah, Blah.
-
"""
try:
cumprod = a.cumprod
@@ -1012,8 +1006,6 @@ def cumproduct (a, axis=None, dtype=None, out=None):
def ptp(a, axis=None, out=None):
"""Return maximum - minimum along the the given dimension.
- Blah, Blah.
-
"""
try:
ptp = a.ptp
@@ -1025,8 +1017,6 @@ def ptp(a, axis=None, out=None):
def amax(a, axis=None, out=None):
"""Return the maximum of 'a' along dimension axis.
- Blah, Blah.
-
"""
try:
amax = a.max
@@ -1038,8 +1028,6 @@ def amax(a, axis=None, out=None):
def amin(a, axis=None, out=None):
"""Return the minimum of a along dimension axis.
- Blah, Blah.
-
"""
try:
amin = a.min
@@ -1052,8 +1040,6 @@ def alen(a):
"""Return the length of a Python object interpreted as an array
of at least 1 dimension.
- Blah, Blah.
-
"""
try:
return len(a)
@@ -1064,8 +1050,6 @@ def alen(a):
def prod(a, axis=None, dtype=None, out=None):
"""Return the product of the elements along the given axis.
- Blah, Blah.
-
"""
try:
prod = a.prod
@@ -1077,8 +1061,6 @@ def prod(a, axis=None, dtype=None, out=None):
def cumprod(a, axis=None, dtype=None, out=None):
"""Return the cumulative product of the elements along the given axis.
- Blah, Blah.
-
"""
try:
cumprod = a.cumprod