From e1832018e84a75871c69e1d1c7779592014fa041 Mon Sep 17 00:00:00 2001 From: Sebastian Luther Date: Mon, 20 Sep 2010 12:50:23 +0200 Subject: Move mergelist printing into resolver/output.py --- pym/_emerge/format_size.py | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 pym/_emerge/format_size.py (limited to 'pym/_emerge/format_size.py') diff --git a/pym/_emerge/format_size.py b/pym/_emerge/format_size.py deleted file mode 100644 index 4357b7654..000000000 --- a/pym/_emerge/format_size.py +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -import sys - -if sys.hexversion >= 0x3000000: - basestring = str - -# formats a size given in bytes nicely -def format_size(mysize): - if isinstance(mysize, basestring): - return mysize - if 0 != mysize % 1024: - # Always round up to the next kB so that it doesn't show 0 kB when - # some small file still needs to be fetched. - mysize += 1024 - mysize % 1024 - mystr=str(mysize//1024) - mycount=len(mystr) - while (mycount > 3): - mycount-=3 - mystr=mystr[:mycount]+","+mystr[mycount:] - return mystr+" kB" - -- cgit v1.2.3-1-g7c22