mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
(cherry picked from commit 42efe6a20f52cfb3bd827a2b68d1fb6cc3949626) IJ-MR-5791 GitOrigin-RevId: e2a40572b0de4919a5049ff06e437b34d78c296c
12 lines
174 B
Python
12 lines
174 B
Python
class Foo:
|
|
def __init__(self, x, y, z):
|
|
self.x = x
|
|
self.y = y
|
|
self.z = z
|
|
|
|
|
|
def foo():
|
|
x = 1
|
|
y = 2
|
|
z = 3
|
|
return Foo(x, y, z)<caret> |