Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
completion
/
isInstanceTuple.after.py
blob: a46e3ff64a06e1e49e654fcc8f8931e26a62950e [
file
] [
log
] [
blame
]
class
Foo
:
def
test
(
self
):
pass
class
Foo2
:
def
test
(
self
):
pass
def
x
(
p
):
if
isinstance
(
p
,
(
Foo
,
Foo2
)):
p
.
test
()