``undefine_user_symbol`` removes a symbol from the internal list of user added Symbol objects. :param sym: the symbol to undefine :rtype: None
(self, sym: '_types.CoreSymbol')
| 6324 | core.BNDefineUserSymbol(self.handle, sym.handle) |
| 6325 | |
| 6326 | def undefine_user_symbol(self, sym: '_types.CoreSymbol') -> None: |
| 6327 | """ |
| 6328 | ``undefine_user_symbol`` removes a symbol from the internal list of user added Symbol objects. |
| 6329 | |
| 6330 | :param sym: the symbol to undefine |
| 6331 | :rtype: None |
| 6332 | """ |
| 6333 | core.BNUndefineUserSymbol(self.handle, sym.handle) |
| 6334 | |
| 6335 | def define_imported_function( |
| 6336 | self, import_addr_sym: '_types.CoreSymbol', func: '_function.Function', type: Optional['_types.Type'] = None |