-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
enhancementNew feature or requestNew feature or request
Description
For some analyses it would be nice to only instrument and analyze specific functions.
This can either be done by
- appending the name to
pre_call
andpost_call
, e.g.pre_call_open
or - adding decorators, e.g.
@only(functions=['open', 'close'])
def pre_call(...)
...
@except(functions=['read', 'write'])
def post_call(...)
FlxB2
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request