In more recent versions of Python, these two strings should be raw strings, otherwise Python will emit a Syntax Warning every time gdb is started: https://github.com/dmillard/eigengdb/blob/c741edef3f07f33429056eff48d79a62733ed494/eigengdb/__init__.py#L89 https://github.com/dmillard/eigengdb/blob/c741edef3f07f33429056eff48d79a62733ed494/eigengdb/__init__.py#L184 Easy fix: just convert `'...'` to `r'...'`.
In more recent versions of Python, these two strings should be raw strings, otherwise Python will emit a Syntax Warning every time gdb is started:
eigengdb/eigengdb/__init__.py
Line 89 in c741ede
eigengdb/eigengdb/__init__.py
Line 184 in c741ede
Easy fix: just convert
'...'tor'...'.