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