This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
You've already forked circuitpython
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
c33a4cc213
circuitpython
/
tests
/
io
/
file_long_read3.py
5 lines
74 B
Python
Raw
Normal View
History
Unescape
Escape
tests: Fix typo in file_long_read3.py.
2015-01-23 12:00:02 -05:00
f
=
open
(
"
io/data/bigfile1
"
,
"
rb
"
)
tests: Add extra test for reading multiple of internal chunk size.
2015-01-23 11:18:11 -05:00
b
=
f
.
read
(
512
)
print
(
len
(
b
)
)
print
(
b
)