Lines Matching defs:symbols
4 Helpers to extract symbols from Unix libs and auto-generate
43 def symbols(lib=PYTHONLIB,types=('T','C','D')):
48 symbols = {}
58 symbols[name] = address,type
59 return symbols
61 def export_list(symbols):
65 for name,(addr,type) in symbols.items():
81 # Special symbols that have to be included even though they don't
86 def filter_Python(symbols,specials=SPECIALS):
88 for name in list(symbols.keys()):
92 del symbols[name]
96 s = symbols(PYTHONLIB)