diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 17:55:05 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 17:55:05 +0000 |
commit | 87e4416de42dbe1fec8bace206cf2faa99c2b805 (patch) | |
tree | 2a46882118e77fa967799e072369fd96ca6f7a2e /tools/isolate/trace_inputs.py | |
parent | e9fbb9350248394b584934cb735b5506e4f164d6 (diff) | |
download | chromium_src-87e4416de42dbe1fec8bace206cf2faa99c2b805.zip chromium_src-87e4416de42dbe1fec8bace206cf2faa99c2b805.tar.gz chromium_src-87e4416de42dbe1fec8bace206cf2faa99c2b805.tar.bz2 |
Redundant docstrings are redundant. Reduce redundancy.
No code change.
Apply comment on code review for r145479.
R=cmp@chromium.org
NOTRY=true
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10703140
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/isolate/trace_inputs.py')
-rwxr-xr-x | tools/isolate/trace_inputs.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/isolate/trace_inputs.py b/tools/isolate/trace_inputs.py index 6878d49..97d1445 100755 --- a/tools/isolate/trace_inputs.py +++ b/tools/isolate/trace_inputs.py @@ -1610,10 +1610,7 @@ class Dtrace(ApiBase): text = text[:-2] def unescape(x): - """Replaces '\\' with '\' and '\?' (where ? is anything) with ?. - - Implemented as an automaton. - """ + """Replaces '\\' with '\' and '\?' (where ? is anything) with ?.""" out = [] escaped = False for i in x: |