Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
micropython/ports/webassembly/variants/manifest.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24 lines (22 sloc)
488 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The asyncio package is built from the standard implementation but with the | |
# core scheduler replaced with a custom scheduler that uses the JavaScript | |
# runtime (with setTimeout an Promise's) to contrtol the scheduling. | |
package( | |
"asyncio", | |
( | |
"event.py", | |
"funcs.py", | |
"lock.py", | |
), | |
base_path="$(MPY_DIR)/extmod", | |
opt=3, | |
) | |
package( | |
"asyncio", | |
( | |
"__init__.py", | |
"core.py", | |
), | |
base_path="$(PORT_DIR)", | |
opt=3, | |
) |