(original) (raw)
On Sun, Jan 12, 2014 at 2:16 PM, Nick Coghlan <ncoghlan@gmail.com> wrote:
Why are you proposing to do the \*join\* in text space? Encode all the parts separately, concatenate them with b'\\n'.join() (or whatever separator is appropriate). It's only the \*text formatting operation\* that needs to be done in text space and then explicitly encoded (and this example doesn't even need latin-1,ASCII is sufficient):
I apparently misunderstood what was Steven suggesting, thanks for the clarification.