mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
(cherry picked from commit 4fefae6a1d9fbc6df174d53222ceba9208691b65) GitOrigin-RevId: d6e65ace1378765be246fe09a86d2bff133855df
8 lines
84 B
Python
8 lines
84 B
Python
class A(object):
|
|
def f(self, x):
|
|
return self
|
|
|
|
|
|
a = A()
|
|
a.f(1).f(2).f(3)
|