diff options
-rw-r--r-- | numpy/ma/tests/test_mrecords.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/ma/tests/test_mrecords.py b/numpy/ma/tests/test_mrecords.py index abc061503..411e3ee59 100644 --- a/numpy/ma/tests/test_mrecords.py +++ b/numpy/ma/tests/test_mrecords.py @@ -327,6 +327,8 @@ class TestMRecords(TestCase): # def test_exotic_formats(self): "Test that 'exotic' formats are processed properly" + print "float alignment: ", np.dtype(np.float).alignment + print "int alignment: ", np.dtype(np.int).alignment easy = mrecarray(1, dtype=[('i',int), ('s','|S8'), ('f',float)]) easy[0] = masked assert_equal(easy.filled(1).item(), (1,'1',1.)) |