File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -155,13 +155,17 @@ def __iter__(self) -> Iterator[Symbol]:
155
155
raise SharedObjectError ("shared object has no symbol table" )
156
156
157
157
for symbol in symtab_cmd .symbols :
158
- # We only care about symbols that have the external bit set,
159
- # since these are the ones resolved when linking to CPython.
160
- if not symbol .type & 0x01 :
158
+ # TODO(ww): Do a better job of filtering here.
159
+ # The Mach-O symbol table includes all kinds of junk, including
160
+ # symbolic entries for debuggers. We should exclude all of
161
+ # these non-function/data entries, as well as any symbols
162
+ # that isn't marked as external (since we're linking against
163
+ # the Python interpreter for the ABI).
164
+ if (name := symbol .name ) is None :
161
165
continue
162
166
163
167
# All symbols on macOS are prefixed with _; remove it.
164
- yield Symbol (symbol . name [1 :])
168
+ yield Symbol (name [1 :])
165
169
166
170
167
171
class _Dll (_SharedObjectBase ):
You can’t perform that action at this time.
0 commit comments