diff options
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/modify-python-lldb.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/scripts/Python/modify-python-lldb.py b/lldb/scripts/Python/modify-python-lldb.py index 2881d4ead62..4361b6c2a66 100644 --- a/lldb/scripts/Python/modify-python-lldb.py +++ b/lldb/scripts/Python/modify-python-lldb.py @@ -121,10 +121,6 @@ for line in content.splitlines(): state |= CLEANUP_DOCSTRING if (state & CLEANUP_DOCSTRING): - # Remove the '\a ' and '\b 'substrings. - line = line.replace('\a ', '') - line = line.replace('\b ', '') - line = char_to_str_xform(line) # Note that the transition out of CLEANUP_DOCSTRING is handled at the |