Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
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
)