This limitation occurs because:
Python's trace hook system only generates "call" events for Python functions, not built-in functions
Built-in functions are implemented in C and bypass the Python trace hook mechanism
Built-in methods (like list.append(), dict.get()) are also not traced
Workarounds:
This limitation occurs because:
Python's trace hook system only generates "call" events for Python functions, not built-in functions
Built-in functions are implemented in C and bypass the Python trace hook mechanism
Built-in methods (like list.append(), dict.get()) are also not traced
Workarounds: