(self)
| 719 | np.array([(256, (0, 256, 512))], r.dtype)) |
| 720 | |
| 721 | def test_string_NULL(self): |
| 722 | # Changeset 3557 |
| 723 | assert_equal(np.array("a\x00\x0b\x0c\x00").item(), |
| 724 | 'a\x00\x0b\x0c') |
| 725 | |
| 726 | def test_junk_in_string_fields_of_recarray(self): |
| 727 | # Ticket #483 |
nothing calls this directly
no test coverage detected