fixed PY-13868 Move statement on a comment inside a dict deletes the dict

This commit is contained in:
Ekaterina Tuzova
2014-09-08 17:55:30 +04:00
parent e0fd4f52a3
commit 877fae21f2
5 changed files with 24 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
a = {
1:1,
# te<caret>st
2:2
}
@@ -0,0 +1,5 @@
a = {
1:1,
2:2
# te<caret>st
}
@@ -0,0 +1,5 @@
a = {
# te<caret>st
1:1,
2:2
}