Advertisement
orborbson

wersja_mpy

Jul 3rd, 2024
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | Source Code | 0 0
  1. import sys
  2. sys_mpy = sys.implementation._mpy
  3. arch = [None, "x86", "x64", "armv6", "armv6m", "armv7m", "armv7em", "armv7emsp", "armv7emdp", "xtensa", "xtensawin", "rv32imc"][sys_mpy >> 10]
  4. print("mpy wersja: %i\nmpy podwersja: %i\nmpy flagi: %s" % (sys_mpy & 0xff, sys_mpy >> 8 & 3, ("-march=" + arch) if arch else ""))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement