blob: f45f38e6066a703c809f5fd84fc4da674ad2dd74 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A:
2 def f1(self, *, a = 1):
3 pass
4
5class B(A):
6 def f1(self, *, a=1):
7 <selection>super().f1(a=a)</selection>