mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
Fix callType calculating for class instance: resolve __call__ member and process all possible return types
10 lines
118 B
Python
10 lines
118 B
Python
class Foo(object):
|
|
bar = True
|
|
|
|
class FooMaker(object):
|
|
__call__ = tuple
|
|
|
|
fm = FooMaker()
|
|
f3 = fm()
|
|
|
|
f3.count() |