>>> def f(a, b, c):
... pass
...
>>> import inspect
>>> inspect.getcallargs(f, 1, 2, 3)
{'a': 1, 'b': 2, 'c': 3}
>>>
>>> import sentry_sdk
>>> @sentry_sdk.tracing.trace
... def f(a, b, c):
... passs
...
>>> inspect.getcallargs(f, 1, 2, 3)
{'args': (1, 2, 3), 'kwargs': {}}
>>>
Same function signature after applying the decorator.
Changed signature.
How do you use Sentry?
Sentry Saas (sentry.io)
Version
all of them
Steps to Reproduce
Expected Result
Same function signature after applying the decorator.
Actual Result
Changed signature.