We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 732c888 commit 825d38cCopy full SHA for 825d38c
v3/docs/TUTORIAL.md
@@ -2267,8 +2267,8 @@ class MyIO(io.IOBase):
2267
return ret
2268
```
2269
2270
-The following is a complete awaitable delay class:
2271
-
+The following is a complete awaitable delay class. Please note that it does not
+run on the Unix port (under investigation).
2272
```python
2273
import uasyncio as asyncio
2274
import utime
@@ -2290,7 +2290,7 @@ class MillisecTimer(io.IOBase):
2290
return self
2291
2292
def read(self, _):
2293
- pass
+ return "a"
2294
2295
def ioctl(self, req, arg):
2296
ret = MP_STREAM_ERROR
0 commit comments