Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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
()