diff options
author | Josh Triplett <josh@joshtriplett.org> | 2013-11-06 20:03:06 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2013-11-07 04:47:13 -0500 |
commit | c2e182fab04c1fb50e7dac05d0fd78d331225ad0 (patch) | |
tree | 862352b8702d601592e1f9656103fe501bfed4b9 /scripts/bloat-o-meter | |
parent | 5a7b2d27960c7390f1729b6b81eaf94d9e7f3837 (diff) |
scripts/bloat-o-meter: use .startswith rather than fragile slicing
str.startswith has existed since at least Python 2.0, in 2000; use it
rather than a fragile comparison against an initial slice of a string,
which requires hard-coding the length of the string to compare against.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/bloat-o-meter')
-rwxr-xr-x | scripts/bloat-o-meter | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter index cd2916cfbac4..549d0ab8c662 100755 --- a/scripts/bloat-o-meter +++ b/scripts/bloat-o-meter | |||
@@ -19,7 +19,7 @@ def getsizes(file): | |||
19 | size, type, name = l[:-1].split() | 19 | size, type, name = l[:-1].split() |
20 | if type in "tTdDbBrR": | 20 | if type in "tTdDbBrR": |
21 | # strip generated symbols | 21 | # strip generated symbols |
22 | if name[:6] == "__mod_": continue | 22 | if name.startswith("__mod_"): continue |
23 | if name == "linux_banner": continue | 23 | if name == "linux_banner": continue |
24 | # statics and some other optimizations adds random .NUMBER | 24 | # statics and some other optimizations adds random .NUMBER |
25 | name = re.sub(r'\.[0-9]+', '', name) | 25 | name = re.sub(r'\.[0-9]+', '', name) |