Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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__
)