mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
* Updated Polyscript with its workers feature * Worked around the inconsistent behavior between Pyodide and MicroPython * Fixed Pyodide greedy access to undesired Proxy fields
8 lines
105 B
Python
8 lines
105 B
Python
def micropython_version():
|
|
import sys
|
|
|
|
return sys.version
|
|
|
|
|
|
__export__ = ["micropython_version"]
|