/usr/share/pyshared/cclib/progress/textprogress.py is in python-cclib 1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | # This file is part of cclib (http://cclib.sf.net), a library for parsing
# and interpreting the results of computational chemistry packages.
#
# Copyright (C) 2006, the cclib development team
#
# The library is free software, distributed under the terms of
# the GNU Lesser General Public version 2.1 or later. You should have
# received a copy of the license along with cclib. You can also access
# the full license online at http://www.gnu.org/copyleft/lgpl.html.
__revision__ = "$Revision: 960 $"
import sys
class TextProgress:
def __init__(self):
self.nstep = 0
self.text = None
self.oldprogress = 0
self.progress = 0
self.calls = 0
def initialize(self, nstep, text=None):
self.nstep = float(nstep)
self.text = text
#sys.stdout.write("\n")
def update(self, step, text=None):
self.progress = int(step * 100 / self.nstep)
if self.progress/2 >= self.oldprogress/2+1 or self.text != text:
# just went through at least an interval of ten, ie. from 39 to 41, so update
mystr = "\r["
prog = self.progress / 10
mystr += prog*"="+(10-prog)*"-"
mystr += "] %3i" % self.progress + "%"
if text:
mystr += " "+text
sys.stdout.write("\r"+70*" ")
sys.stdout.flush()
sys.stdout.write(mystr)
sys.stdout.flush()
self.oldprogress = self.progress
if self.progress >= 100 and text == "Done":
print " "
return
|