In PEP 8, there is: > Don't write string literals that rely on significant trailing whitespace It's not clear to me what this means, and therefore likely needs further explanation, or maybe an example.
It means not write a = "abc " as a = """abc """ with the four spaces trailing at the end of the line. I don't think there is a more concise way of putting it in the PEP.
> I don't think there is a more concise way of putting it in the PEP. Is it not more important to be clear than to be concise? Can't you put this info that PEP, or at least a link to this issue?
I think the sentence is already clear enough --- editors often remove trailing spaces, so if they are significant (e.g. if they are in a string literal) they are at risk. This is actually more a general advice than a styling guideline, so I'm not even sure it belongs to the PEP 8.