Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyProtectedMemberInspection
/
namedTuple.py
blob: 905088a1ba69e34f71a25659621a88fb6d65a4a4 [
file
] [
log
] [
blame
]
from
collections
import
namedtuple
i
=
namedtuple
(
'Point'
,
[
'x'
,
'y'
],
verbose
=
True
)
i
.
_replace
(
**{
"a"
:
"a"
})