[issue42285] Missing spaces in list literals in Tutorial/Data Structures

2020-11-07 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for the suggestion, but I'm going to mark it as declined for the reasons listed in the PR. -- nosy: +rhettinger resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python t

[issue42285] Missing spaces in list literals in Tutorial/Data Structures

2020-11-07 Thread Jakub Moliński
Change by Jakub Moliński : -- keywords: +patch pull_requests: +22096 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23193 ___ Python tracker ___ __

[issue42285] Missing spaces in list literals in Tutorial/Data Structures

2020-11-07 Thread Jakub Moliński
New submission from Jakub Moliński : In the Data Structures section of the Tutorial there are examples of nested list comprehensions that include list literals where elements are written without spaces after commas (`[1,2,3]` instead `[1, 2, 3]`). This is a trivial problem but since this is a