Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
c7287d14ff9afb2ae3cc26fa670a0da3aaf16965
/
.
/
python
/
testData
/
override
/
classmethod_after.py
blob: dd85fe6b083e405b43d827a9c42841a572fe419a [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
class
A
:
2
@classmethod
3
def
foo
(
cls
):
4
cls
.
k
=
3
5
6
class
B
(
A
):
7
@classmethod
8
def
foo
(
cls
):
9
<
selection
>
A
.
foo
(
cls
)</
selection
>