Sign in
android
/
platform
/
external
/
python
/
pylint
/
612950b6eae36a543f4645d743f5fd02839c9788
/
.
/
tests
/
functional
/
i
/
init_return_from_inner_function.py
blob: 065a1ad70ff443a4e748195c63acd7867fbc78c3 [
file
] [
log
] [
blame
]
# pylint: disable=too-few-public-methods, useless-object-inheritance
"""#10075"""
__revision__
=
1
class
Aaa
(
object
):
"""docstring"""
def
__init__
(
self
):
def
inner_function
(
arg
):
"""inner docstring"""
return
arg
+
4
self
.
func
=
inner_function