4216bc7d13
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
16 lines
304 B
Python
16 lines
304 B
Python
import io
|
|
try:
|
|
io.IOBase
|
|
except AttributeError:
|
|
print('SKIP')
|
|
raise SystemExit
|
|
|
|
|
|
class MyIO(io.IOBase):
|
|
def write(self, buf):
|
|
# CPython and uPy pass in different types for buf (str vs bytearray)
|
|
print('write', len(buf))
|
|
return len(buf)
|
|
|
|
print('test', file=MyIO())
|