Home | History | Annotate | Download | only in scripts

Lines Matching defs:symbols

4 Helpers to extract symbols from Unix libs and auto-generate
43 def symbols(lib=PYTHONLIB,types=('T','C','D')):
47 symbols = {}
57 symbols[name] = address,type
58 return symbols
60 def export_list(symbols):
64 for name,(addr,type) in symbols.items():
80 # Special symbols that have to be included even though they don't
85 def filter_Python(symbols,specials=SPECIALS):
87 for name in symbols.keys():
91 del symbols[name]
95 s = symbols(PYTHONLIB)