summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2009-03-28 23:51:52 +0000
committerPauli Virtanen <pav@iki.fi>2009-03-28 23:51:52 +0000
commit8a455cbdae39233b18758d064f5959ae56e4922b (patch)
tree5468dea75d0ba4af3b10d97fad977471681dca44
parentae002bbd014594ff41dd922641c69ac7559685a7 (diff)
downloadnumpy-8a455cbdae39233b18758d064f5959ae56e4922b.tar.gz
Enable docstrings for fmin and fmax
-rw-r--r--numpy/core/code_generators/generate_umath.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/code_generators/generate_umath.py b/numpy/core/code_generators/generate_umath.py
index da187aa8c..58b39d949 100644
--- a/numpy/core/code_generators/generate_umath.py
+++ b/numpy/core/code_generators/generate_umath.py
@@ -318,13 +318,13 @@ defdict = {
),
'fmax' :
Ufunc(2, 1, None,
- "",
+ docstrings.get('numpy.core.umath.fmax'),
TD(noobj),
TD(O, f='npy_ObjectMax')
),
'fmin' :
Ufunc(2, 1, None,
- "",
+ docstrings.get('numpy.core.umath.fmin'),
TD(noobj),
TD(O, f='npy_ObjectMin')
),