This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients THRlWiTi, asvetlov, eric.araujo, gpolo, kbk, ned.deily, rhettinger, roger.serwy, terry.reedy
Date 2016-06-03.06:41:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464936114.9.0.240103232624.issue5150@psf.upfronthosting.co.za>
In-reply-to
Content
Having occasionally forgotten, and had to do whitespace commits, I agree.  For Python code, there is never an absolute need for trailing whitespace.  Trailing whitespace in string literals can be done by parse time concatenation.
'''\
line 1
line 2
''' 'line with trailig space    '
Indeed, the trick is needed to mark the trailing space in the code.

I have thought about removing trailing spaces after each return, but pasting may be a problem.
History
Date User Action Args
2016-06-03 06:41:54terry.reedysetrecipients: + terry.reedy, rhettinger, kbk, gpolo, ned.deily, roger.serwy, eric.araujo, asvetlov, THRlWiTi
2016-06-03 06:41:54terry.reedysetmessageid: <1464936114.9.0.240103232624.issue5150@psf.upfronthosting.co.za>
2016-06-03 06:41:54terry.reedylinkissue5150 messages
2016-06-03 06:41:54terry.reedycreate