(row_tup)
| 2362 | np.exceptions.VisibleDeprecationWarning, stacklevel=2) |
| 2363 | |
| 2364 | def encode_unicode_cols(row_tup): |
| 2365 | row = list(row_tup) |
| 2366 | for i in strcolidx: |
| 2367 | row[i] = row[i].encode('latin1') |
| 2368 | return tuple(row) |
| 2369 | |
| 2370 | try: |
| 2371 | data = [encode_unicode_cols(r) for r in data] |
no test coverage detected
searching dependent graphs…