diff options
author | Jay Bourque <jay.bourque@continuum.io> | 2012-11-14 12:08:36 -0600 |
---|---|---|
committer | Jay Bourque <jay.bourque@continuum.io> | 2013-08-16 16:39:30 -0500 |
commit | 56d74a4687b8b01ed328896f91b5e42962923122 (patch) | |
tree | 8d47571e8a8477de5f3655ff91cbe18f05e4417f /numpy | |
parent | 04c341da469150701fe7def6c98955485425b388 (diff) | |
download | numpy-56d74a4687b8b01ed328896f91b5e42962923122.tar.gz |
Add comment to 'at' method unit test
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/tests/test_ufunc.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/core/tests/test_ufunc.py b/numpy/core/tests/test_ufunc.py index 87afe879e..8efecfeb8 100644 --- a/numpy/core/tests/test_ufunc.py +++ b/numpy/core/tests/test_ufunc.py @@ -866,7 +866,6 @@ class TestUfunc(TestCase): assert_(MyThing.getitem_count <= 2, MyThing.getitem_count) def test_inplace_fancy_indexing(self): - # 'at' method is equivalent to a[:,idx] += b a = np.arange(10) indices = np.array([2,5,2]) |