mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
12 lines
302 B
Python
12 lines
302 B
Python
my_set = set()
|
|
my_set = <warning descr="Function call can be replaced with set literal">set([1,2,3])</warning>
|
|
my_set = <warning descr="Function call can be replaced with set literal">set((1,2,3))</warning>
|
|
|
|
my_set = set(var)
|
|
|
|
def set(fake=None):
|
|
pass
|
|
|
|
my_fake_set = set()
|
|
my_fake_set = set([1,2,3])
|