Pychecker cleanup, improved icons for reports

svn: r844
This commit is contained in:
Don Allingham
2002-03-16 17:26:58 +00:00
parent 5639da6b5d
commit 30dc202b04
14 changed files with 241 additions and 141 deletions

View File

@@ -178,7 +178,8 @@ class RcsVersionControl(VersionControl):
slog = 0
sname = 0
v = None
l = None
l = []
o = None
d = None
r,w = popen2.popen2("rlog %s" % self.vfile)
@@ -188,7 +189,7 @@ class RcsVersionControl(VersionControl):
if sname == 1:
if line[0:3] == "key":
sname = 0
continue;
continue
else:
s = string.split(string.strip(line),":")
print "%s - %s" % (s[0],s[1])
@@ -213,7 +214,7 @@ class RcsVersionControl(VersionControl):
o = g.group(2)
slog = 1
l = []
w.close()
r.close()
return rlist
@@ -240,8 +241,7 @@ class RcsVersionControl(VersionControl):
status = proc.wait()
del proc
os.remove(self.tfile)
if status != 0:
return status
return status
def set_tag(self,tag):
"""Sets the tag to the symbolic string"""