mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
17 lines
389 B
Python
17 lines
389 B
Python
import re
|
|
import sys
|
|
|
|
QSTR_BLACKLIST = set(['NULL', 'number_of'])
|
|
|
|
|
|
def process(source, target):
|
|
for line in source:
|
|
for match in re.findall(r'MP_QSTR_[_a-zA-Z0-9]+', line):
|
|
name = match.replace('MP_QSTR_', '')
|
|
if name not in QSTR_BLACKLIST:
|
|
target.write('Q(%s)\n' % name)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
process(sys.stdin, sys.stdout)
|