Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
moduleAttribute.py
blob: 8e4dec410776bd1cff2b14a3f82e546dd415fec1 [
file
] [
log
] [
blame
]
class
OldStyle
:
pass
class
NewStyle
(
object
):
pass
x
=
OldStyle
()
y
=
NewStyle
()
print
(
OldStyle
.
__module__
)
print
(
NewStyle
.
__module__
)
print
(
x
.
__module__
)
print
(
y
.
__module__
)