New submission from Serhiy Storchaka <storchaka+cpyt...@gmail.com>:

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.

----------
components: Library (Lib)
messages: 329059
nosy: serhiy.storchaka
priority: normal
severity: normal
status: open
title: Bugs in concatenating string literals on different lines
type: behavior
versions: Python 3.6, Python 3.7, Python 3.8

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue35133>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to