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