Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

stable csinfo: always use CachedSummaryInfo

Changeset b68b415f5357

Parent be7a2d21a2c3

by Yuki KODAMA

Changes to one file · Browse files at b68b415f5357 Showing diff from parent be7a2d21a2c3 Diff from another changeset...

 
361
362
363
364
 
365
366
367
368
369
370
371
372
373
374
375
 
400
401
402
403
 
404
405
406
 
473
474
475
476
 
477
478
479
 
361
362
363
 
364
365
366
367
368
369
370
 
 
371
372
373
 
398
399
400
 
401
402
403
404
 
471
472
473
 
474
475
476
477
@@ -361,15 +361,13 @@
   class SummaryBase(object):   - def __init__(self, target, custom, repo, info=None): + def __init__(self, target, custom, repo, info):   if target is None:   self.target = None   else:   self.target = str(target)   self.custom = custom   self.repo = repo - if info is None: - info = SummaryInfo()   self.info = info   self.ctx = create_context(repo, self.target)   @@ -400,7 +398,7 @@
   class SummaryPanel(SummaryBase, gtk.Frame):   - def __init__(self, target, style, custom, repo, info=None): + def __init__(self, target, style, custom, repo, info):   SummaryBase.__init__(self, target, custom, repo, info)   gtk.Frame.__init__(self)   @@ -473,7 +471,7 @@
   class SummaryLabel(SummaryBase, gtk.Label):   - def __init__(self, target, style, custom, repo, info=None): + def __init__(self, target, style, custom, repo, info):   SummaryBase.__init__(self, target, custom, repo, info)   gtk.Label.__init__(self)