Set row_sep=None
by default and write a '\n' after row_sep
(when it is provided)
#41
Labels
breaking change
This breaks backward compatibility
Milestone
Motivation
""
to indicate "no value" makes type checking less useful. UsingNone
is more correct.\n
doesn't make any sense. So the\n
should be be enforced in some way.SepGenerator
to return a string ending with\n
. If it needs to be there, why should I bother the user to add it? Furthermore, if one wants to useHline
in other parts of the program, s(he) may need torstrip()
the returned separator returned byHline
, which is not ideal.Decision
row_sep=None
by default.\n
after therow_sep
string (whenrow_sep is not None
). In other words, do not bother the user to include a '\n' at the end ofrow_sep
.This is a breaking change.
The text was updated successfully, but these errors were encountered: