summary refs log tree commit diff
path: root/src/etc/debugger_pretty_printers_common.py
AgeCommit message (Collapse)AuthorLines
2017-06-09Add compat_str() which works with unicode in both Python 2 and 3gentoo90-0/+5
GDB can be built with Python 2 or with Python 3
2017-06-02Add GDB pretty-printer for OsStringgentoo90-0/+9
2017-01-01Add pretty printing of unions in debuggersPhilip Craig-6/+10
Fixes #37479
2016-09-17pep8 prefers triple quoted with double quotesEitan Adler-1/+1
2016-08-10gdb: Fix pretty-printing special-cased Rust typesSebastian Ullrich-0/+17
gdb trunk now reports fully qualified type names, just like lldb. Move lldb code for extracting unqualified names to shared file.
2016-07-04Added a pretty printer for &mut slicesNikhil Shagrithaya-1/+1
2015-07-17fix pretty printers to handle new VecAlexis Beingessner-9/+7
2015-05-30debuginfo: Create common debugger pretty printer module.Michael Woerister-0/+328
GDB and LLDB pretty printers have some common functionality and also access some common information, such as the layout of standard library types. So far, this information has been duplicated in the two pretty printing python modules. This commit introduces a common module used by both debuggers.