Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2e182fa authored by Josh Triplett's avatar Josh Triplett Committed by Michal Marek
Browse files

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: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 5a7b2d27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ def getsizes(file):
        size, type, name = l[:-1].split()
        if type in "tTdDbBrR":
            # strip generated symbols
            if name[:6] == "__mod_": continue
            if name.startswith("__mod_"): continue
            if name == "linux_banner": continue
            # statics and some other optimizations adds random .NUMBER
            name = re.sub(r'\.[0-9]+', '', name)