import textwrap
import sys
import copy
-import random
# Third party modules
import six
# Own modules
-from .common import pp, to_bytes, to_str
-
-from .errors import FunctionNotImplementedError, PpAppError
+from .common import pp
from .app import PpApplication
-from .du import DuError, DuParseError, DuListError
-from .du import DuEntry
+from .du import DuParseError, DuEntry
from .du import DU_UNITS, DU_UNIT_EXP
try:
except ImportError:
from .global_version import __version__ as my_version
-__version__ = '0.4.3'
+__version__ = '0.4.4'
LOG = logging.getLogger(__name__)
'the standard input will be read.'),
)
-
# -------------------------------------------------------------------------
def perform_arg_parser(self):
"""
total = 0
if six.PY2:
- total = long(0)
+ total = long(0) # noqa
while not eof:
lnr += 1