--strict
should disallow implicit string concatenation
#837
Labels
Milestone
--strict
should disallow implicit string concatenation
#837
It's a pretty classically bug-prone Python feature (e.g. it can hide missed commas), so it might be worth warning about it in
--strict
mode. We can even consider compiling string literals added together with plus into implicit string concatenation to avoid the performance hit.The text was updated successfully, but these errors were encountered: