This website requires JavaScript.
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
mirror
/
micropython
kopia lustrzana
https://github.com/micropython/micropython
Obserwuj
1
Polub
0
Forkuj
You've already forked micropython
0
Kod
Zgłoszenia
Projekty
Wydania
Wiki
Aktywność
53562213c8
micropython
/
tests
/
io
/
file_long_read3.py
5 wiersze
74 B
Python
Czysty
Zwykły widok
Historia
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
)