Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
88f318c9bf709fa5700350636925f2c46d6ae08d
/
.
/
python
/
testData
/
stubs
/
MetaClass.py
blob: d882691837725dc089a72ca5af54d56599a80689 [
file
] [
log
] [
blame
]
Tor Norbye
88f318c
2014-02-27 16:41:16 -0700
[
diff
] [
blame^
]
1
class
M
(
type
):
2
pass
3
4
5
__metaclass__
=
M
6
7
8
class
C
(
object
):
9
__metaclass__
=
type
10
11
12
class
D
(
object
):
13
pass