summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/format_size.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge/format_size.py')
-rw-r--r--pym/_emerge/format_size.py23
1 files changed, 0 insertions, 23 deletions
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"
-