Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyCallingNonCallableInspection
/
qualifiedNamedTuple.py
blob: 452f51a8aa814c34deedf89e7779d7b5ebb3d5ed [
file
] [
log
] [
blame
]
import
collections
Point
=
collections
.
namedtuple
(
'Point'
,
'x y'
)
p1
=
Point
(
1
,
2
)