From 330bc8af131c5b42efe120dbf70f47881d02d3a3 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Tue, 23 Apr 2019 10:04:22 +0000 Subject: modify-python-lldb: Remove \a-removing code instead, remove \a directly from the interface files. llvm-svn: 358967 --- lldb/scripts/Python/modify-python-lldb.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lldb/scripts/Python/modify-python-lldb.py') diff --git a/lldb/scripts/Python/modify-python-lldb.py b/lldb/scripts/Python/modify-python-lldb.py index 2881d4e..4361b6c 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 -- cgit v1.1