blob: a8b36960f34907faf4faa6faab1fdd8cb4184d2d [file] [log] [blame]
Tor Norbye814f8292014-03-06 17:27:18 -08001class Abstract(object):
2
3 @abstractmethod
4 def foo(self, bar):
5 pass
6
7
8class Concrete(Abstract):
9 """The docstring."""
10
11 def foo(self, bar):
12 <selection>super(Concrete, self).foo(bar)</selection>