class TestIO:
Method | _check_from |
Undocumented |
Method | decimal_sep_localization |
Including this fixture in a test will automatically execute it with both types of decimal separator. |
Method | test_ascii |
Undocumented |
Method | test_big_binary |
Test workarounds for 32-bit limited fwrite, fseek, and ftell calls in windows. These normally would hang doing something like this. See http://projects.scipy.org/numpy/ticket/1660 |
Method | test_binary |
Undocumented |
Method | test_bool_fromstring |
Undocumented |
Method | test_counted_string |
Undocumented |
Method | test_counted_string_with_ws |
Undocumented |
Method | test_dtype |
Undocumented |
Method | test_dtype_bool |
Undocumented |
Method | test_empty_files_binary |
Undocumented |
Method | test_empty_files_text |
Undocumented |
Method | test_file_position_after_fromfile |
Undocumented |
Method | test_file_position_after_tofile |
Undocumented |
Method | test_fromfile_bad_dup |
Undocumented |
Method | test_fromfile_offset |
Undocumented |
Method | test_fromfile_subarray_binary |
Undocumented |
Method | test_fromstring_count0 |
Undocumented |
Method | test_inf |
Undocumented |
Method | test_int64_fromstring |
Undocumented |
Method | test_io_open_buffered_fromfile |
Undocumented |
Method | test_io_open_unbuffered_fromfile |
Undocumented |
Method | test_largish_file |
Undocumented |
Method | test_load_object_array_fromfile |
Undocumented |
Method | test_long_sep |
Undocumented |
Method | test_malformed |
Undocumented |
Method | test_nan |
Undocumented |
Method | test_nofile |
Undocumented |
Method | test_numbers |
Undocumented |
Method | test_parsing_subarray_unsupported |
Undocumented |
Method | test_read_shorter_than_count_subarray |
Undocumented |
Method | test_roundtrip |
Undocumented |
Method | test_roundtrip_binary_str |
Undocumented |
Method | test_roundtrip_dump_pathlib |
Undocumented |
Method | test_roundtrip_file |
Undocumented |
Method | test_roundtrip_repr |
Undocumented |
Method | test_roundtrip_str |
Undocumented |
Method | test_string |
Undocumented |
Method | test_string_with_ws |
Undocumented |
Method | test_tofile_cleanup |
Undocumented |
Method | test_tofile_format |
Undocumented |
Method | test_tofile_sep |
Undocumented |
Method | test_uint64_fromstring |
Undocumented |
Method | test_unseekable_fromfile |
Undocumented |
Method | tmp_filename |
Undocumented |
Method | x |
Undocumented |
Including this fixture in a test will automatically execute it with both types of decimal separator.
So:
def test_decimal(decimal_sep_localization): pass
is equivalent to the following two tests:
def test_decimal_period_separator(): pass def test_decimal_comma_separator(): with CommaDecimalPointLocale(): pass
Undocumented