This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
micropython
mirror of
https://github.com/micropython/micropython.git
Watch
1
Star
0
Fork
You've already forked micropython
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
2069c563f9
micropython
/
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 17:00:02 +00:00
f
=
open
(
"
io/data/bigfile1
"
,
"
rb
"
)
tests: Add extra test for reading multiple of internal chunk size.
2015-01-23 16:18:11 +00:00
b
=
f
.
read
(
512
)
print
(
len
(
b
)
)
print
(
b
)