Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyCallingNonCallableInspection
/
namedTupleCallable.py
blob: 72f070e1eea85957425f4103874f35be6fc08a2d [
file
] [
log
] [
blame
]
from
collections
import
namedtuple
Point
=
namedtuple
(
'Point'
,
[
'x'
,
'y'
],
verbose
=
True
)
p
=
Point
(
11
,
y
=
22
)