Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
override
/
docstring_after.py
blob: a8b36960f34907faf4faa6faab1fdd8cb4184d2d [
file
] [
log
] [
blame
]
class
Abstract
(
object
):
@abstractmethod
def
foo
(
self
,
bar
):
pass
class
Concrete
(
Abstract
):
"""The docstring."""
def
foo
(
self
,
bar
):
<
selection
>
super
(
Concrete
,
self
).
foo
(
bar
)</
selection
>