Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
completion
/
isInstanceTuple.py
blob: 8eb9c929dd6e6775d222dedd8cacc714b69e9fa8 [
file
] [
log
] [
blame
]
class
Foo
:
def
test
(
self
):
pass
class
Foo2
:
def
test
(
self
):
pass
def
x
(
p
):
if
isinstance
(
p
,
(
Foo
,
Foo2
)):
p
.
te
<
caret
>