Files
openide/python/testData/debug/test_quoting_value.py
Egor.Eliseev c368c2f4f1 PY-48235 Add quoting policy for PyXCopyValueAction
IJ-CR-110671

GitOrigin-RevId: 768a88b91943de9dcab5c5023073c82c5f8c93d7
2023-08-18 12:11:01 +00:00

12 lines
193 B
Python

class Car:
def __init__(self):
self.color = "green"
self.size = 23
car = Car()
some_str = "abc"
some_lst = ["a", "b", "c"]
some_dict = {"a" : 1, "b" : 2, "c" : 3}
print()