PY-16335 Preserve formatting of converted collection literals

This commit is contained in:
Mikhail Golubev
2015-07-07 12:40:38 +03:00
parent c00d3ae268
commit 5fee1b116b
4 changed files with 18 additions and 4 deletions
@@ -0,0 +1,4 @@
xs = (<caret>
1, 2, # comment 1
3 # comment 2
)
@@ -0,0 +1,4 @@
xs = [
1, 2, # comment 1
3 # comment 2
]