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