Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
bytesIORead.py
blob: 8168e1399a869bdd19689073e8e360cad37b2289 [
file
] [
log
] [
blame
]
from
io
import
BytesIO
fd
=
BytesIO
(
'foo'
)
fd
.
read
(
10
)
# Should resolve
fd
.<
warning descr
=
"Unresolved attribute reference 'foo' for class 'BytesIO'"
>
foo
</
warning
>()