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