I think I found a #Python #bug today. If you try to do a
csv.writer.writerow()
and one of the strings (not bytes) in the row contains a null character in it, and you are using a csv.Dialect
with escapechar
set to None
, it will result in this condition evaluating to true when it shouldn't. That will almost immediately result in the need to escape, but no escapechar set
exception being thrown. #programminglike this
reshared this