Browse Source
This feature is not enabled on any port, it's not in CPython's io module, and functionality is better suited to the micropython-lib implementation of pkg_resources.pull/7562/merge
Jim Mussared
3 years ago
committed by
Damien George
7 changed files with 0 additions and 83 deletions
@ -1,15 +0,0 @@ |
|||
import uio |
|||
import usys |
|||
|
|||
try: |
|||
uio.resource_stream |
|||
except AttributeError: |
|||
print("SKIP") |
|||
raise SystemExit |
|||
|
|||
buf = uio.resource_stream("data", "file2") |
|||
print(buf.read()) |
|||
|
|||
# resource_stream(None, ...) look ups from current dir, hence sys.path[0] hack |
|||
buf = uio.resource_stream(None, usys.path[0] + "/data/file2") |
|||
print(buf.read()) |
@ -1,2 +0,0 @@ |
|||
1234 |
|||
1234 |
Loading…
Reference in new issue