equal
deleted
inserted
replaced
49 def __init__(self, **entries): |
49 def __init__(self, **entries): |
50 self.synthetic = False |
50 self.synthetic = False |
51 self.__dict__.update(entries) |
51 self.__dict__.update(entries) |
52 |
52 |
53 def __repr__(self): |
53 def __repr__(self): |
54 items = ("%s=%r"%(k, self.__dict__[k]) for k in sorted(self.__dict__)) |
54 items = (r"%s=%r"%(k, self.__dict__[k]) for k in sorted(self.__dict__)) |
55 return "%s(%s)"%(type(self).__name__, ", ".join(items)) |
55 return r"%s(%s)"%(type(self).__name__, r", ".join(items)) |
56 |
56 |
57 class logerror(Exception): |
57 class logerror(Exception): |
58 pass |
58 pass |
59 |
59 |
60 def getrepopath(cvspath): |
60 def getrepopath(cvspath): |