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