blob: 70a4635e681cd00fdaa4fab7f8a0dde57b763554 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A:
2 def m(self):
3 pass
4
5class B(A):
6 def m(self):
7 <selection>super().m()</selection>
8