[issue16951] expand on meaning of 'string literals that rely on significant trailing whitespace'

Georg Brandl report at bugs.python.org
Sun Jan 13 11:47:36 CET 2013


Georg Brandl added the comment:

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.

----------
nosy: +georg.brandl
resolution:  -> works for me
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16951>
_______________________________________


More information about the Python-bugs-list mailing list