Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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
>