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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2018-11-01.12:35:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541075709.76.0.788709270274.issue35133@psf.upfronthosting.co.za>
In-reply-to
Content
The following PR fixes many bugs related to concatenating string literals on different lines. There are two kinds of errors:

1. Missed space. The first line is ended with a word, and the second line is started with a word. When they are concatenated, there is no space between words. This is the same issue as issue35128, but not only in warning messages, and not only in Python.

2. Missed comma in a list of string literals. This leads to concatenating the last string in the first line and the first list in the second line.
History
Date User Action Args
2018-11-01 12:35:09serhiy.storchakasetrecipients: + serhiy.storchaka
2018-11-01 12:35:09serhiy.storchakasetmessageid: <1541075709.76.0.788709270274.issue35133@psf.upfronthosting.co.za>
2018-11-01 12:35:09serhiy.storchakalinkissue35133 messages
2018-11-01 12:35:09serhiy.storchakacreate