mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
8 lines
213 B
Python
8 lines
213 B
Python
o = object()
|
|
if callable(o):
|
|
o(42, 3.14)
|
|
else:
|
|
<warning descr="'object' object is not callable">o(-1)</warning>
|
|
|
|
o(1) # o might be callable here since this line is reachable from the callable() if branch
|