Skip to content

Commit 224b780

Browse files
committed
Revert "_object: filter non-external symbols in dylibs (#16)"
This reverts commit 2b72105.
1 parent e7470d5 commit 224b780

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

abi3audit/_object.py

+8-4
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,17 @@ def __iter__(self) -> Iterator[Symbol]:
155155
raise SharedObjectError("shared object has no symbol table")
156156

157157
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:
161165
continue
162166

163167
# All symbols on macOS are prefixed with _; remove it.
164-
yield Symbol(symbol.name[1:])
168+
yield Symbol(name[1:])
165169

166170

167171
class _Dll(_SharedObjectBase):

0 commit comments

Comments
 (0)