We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25fdb4 commit eee5ed5Copy full SHA for eee5ed5
sentry_sdk/integrations/gnu_backtrace.py
@@ -11,11 +11,12 @@
11
from typing import Any
12
from sentry_sdk._types import Event
13
14
-
+# function is everything between index at @
15
+# and then we match on the @ plus the hex val
16
FUNCTION_RE = r"[^@]+?)\s+@\s+0x[0-9a-fA-F]+"
17
18
FRAME_RE = r"""
-^(?P<index>\d+)\.\s+(?P<function>{FUNCTION_RE}(?:\s+in\s+(?P<package>.+))?
19
+^(?P<index>\d+)\.\s+(?P<function>{FUNCTION_RE}(?:\s+in\s+(?P<package>.+))?$
20
""".format(
21
FUNCTION_RE=FUNCTION_RE,
22
)
0 commit comments