2017-11-08 Martin Liska <mliska@suse.cz>
* analyze_brprob.py: Fix abbreviations for SI units.
From-SVN: r254517
+2017-11-08 Martin Liska <mliska@suse.cz>
+
+ * analyze_brprob.py: Fix abbreviations for SI units.
+
2017-10-02 Thomas Schwinge <thomas@codesourcery.com>
* gcc_update (files_and_dependencies): Handle libbacktrace.
def count_formatted(self):
v = self.count
- for unit in ['','K','M','G','T','P','E','Z']:
+ for unit in ['', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y']:
if v < 1000:
return "%3.2f%s" % (v, unit)
v /= 1000.0