This website requires JavaScript.
Explore
Help
Register
Sign In
fengqi
/
lv_micropython
Watch
1
Star
0
Fork
0
You've already forked lv_micropython
Code
Issues
Pull Requests
1
Actions
Packages
Projects
Releases
Wiki
Activity
lv_micropython
/
ports
/
unix
/
variants
/
manifest.py
4 lines
89 B
Python
Raw
Normal View
History
Unescape
Escape
unix/variants: Prefer unix-ffi packages when loading the manifest. Signed-off-by: Damien George <damien@micropython.org>
2024-02-08 17:08:32 +11:00
add_library
(
"
unix-ffi
"
,
"
$(MPY_LIB_DIR)/unix-ffi
"
)
unix/variants: Change mip package to mip-cmdline. mip-cmdline adds command-line support to mip, useful for the unix port, via micropython -m mip ... Signed-off-by: Damien George <damien@micropython.org>
2022-11-09 14:58:54 +11:00
require
(
"
mip-cmdline
"
)
extmod/modtls: Move the native ssl module to tls. The current `ssl` module has quite a few differences to the CPython implementation. This change moves the MicroPython variant to a new `tls` module and provides a wrapper module for `ssl` (in micropython-lib). Users who only rely on implemented comparible behavior can continue to use `ssl`, while users that rely on non-compatible behavior should switch to `tls`. Then we can make the facade in `ssl` more strictly adhere to CPython. Signed-off-by: Felix Dörre <felix@dogcraft.de>
2024-02-01 12:07:06 +00:00
require
(
"
ssl
"
)
Reference in New Issue
Copy Permalink