From e4f233ecfedd2aafa258db2d3ae27e30604cc020 Mon Sep 17 00:00:00 2001 From: Paul Ivanov Date: Mon, 28 Dec 2009 20:49:52 +0000 Subject: fixed a whole bunch of doctests --- numpy/lib/ufunclike.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/lib/ufunclike.py') diff --git a/numpy/lib/ufunclike.py b/numpy/lib/ufunclike.py index 5e89b0930..bb8ee7808 100644 --- a/numpy/lib/ufunclike.py +++ b/numpy/lib/ufunclike.py @@ -99,9 +99,9 @@ def isposinf(x, y=None): >>> x = np.array([-np.inf, 0., np.inf]) >>> y = np.array([2, 2, 2]) >>> np.isposinf(x, y) - array([1, 0, 0]) + array([0, 0, 1]) >>> y - array([1, 0, 0]) + array([0, 0, 1]) """ if y is None: -- cgit v1.2.1