Closed fawkesley closed 11 years ago
@paulfurley Can you give an example which shows what this change fixes.
I don't get any errors with files that contain unicodes
import messytables
csv_file = open('simple.csv')
tables = messytables.CSVTableSet(csv_file).tables[0]
print repr(tables)
> python foo.py
RowSet(table)
@domoritz Good point about the test case, see dcf415e
@paulfurley Can you make sure that the test are passing on python 2.6 as well?
See failures at https://travis-ci.org/okfn/messytables/jobs/7663559
This is required to ensure repr escapes unicode characters as a string rather than returning a unicode object.