Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
completion
/
namedTupleBaseClass.py
blob: eae904970e052dea96f95f93abbb35d2aa543d11 [
file
] [
log
] [
blame
]
from
collections
import
namedtuple
class
C
(
namedtuple
(
'Coord'
,
'latitude longitude'
)):
def
foo
(
self
):
return
-
1
c
=
C
()
c
.
lat
<
caret
>