[Buildbot-commits] buildbot/buildbot/changes changes.py,1.28,1.29
    Brian Warner 
    warner at users.sourceforge.net
       
    Mon Dec 11 08:40:19 UTC 2006
    
        - Previous message (by thread): [Buildbot-commits] buildbot/buildbot/test runutils.py, 1.17,	1.18 test_changes.py, 1.9, 1.10 test_config.py, 1.40,	1.41 test_control.py, 1.13, 1.14 test_dependencies.py, 1.5,	1.6 test_locks.py, 1.7, 1.8 test_p4poller.py, 1.3,	1.4 test_properties.py, 1.5, 1.6 test_run.py, 1.42,	1.43 test_scheduler.py, 1.11, 1.12 test_shell.py, 1.4,	1.5 test_slavecommand.py, 1.23, 1.24 test_slaves.py, 1.5,	1.6 test_status.py, 1.35, 1.36 test_steps.py, 1.34,	1.35 test_transfer.py, 1.4, 1.5 test_vc.py, 1.69,	1.70 test_web.py, 1.37, 1.38
 
        - Next message (by thread): [Buildbot-commits] buildbot/buildbot/process buildstep.py,1.2,1.3
 
         -  Messages sorted by: 
              [ date ]
              [ thread ]
              [ subject ]
              [ author ]
         
 
       
    
  
Update of /cvsroot/buildbot/buildbot/buildbot/changes
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8921/buildbot/changes
Modified Files:
	changes.py 
Log Message:
[project @ more post-Twisted-1.3.0 cleanup: remove twcompat.providedBy, use zope.interface native methods instead]
Original author: warner at lothar.com
Date: 2006-12-11 08:34:42
Index: changes.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/changes/changes.py,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- changes.py	6 Sep 2006 00:41:54 -0000	1.28
+++ changes.py	11 Dec 2006 08:40:17 -0000	1.29
@@ -14,7 +14,7 @@
 from twisted.web import html
 
 from buildbot import interfaces, util
-from buildbot.twcompat import implements, providedBy
+from buildbot.twcompat import implements
 
 html_tmpl = """
 <p>Changed by: <b>%(who)s</b><br />
@@ -180,8 +180,8 @@
         self.nextNumber = 1
 
     def addSource(self, source):
-        assert providedBy(source, interfaces.IChangeSource)
-        assert providedBy(source, service.IService)
+        assert interfaces.IChangeSource.providedBy(source)
+        assert service.IService.providedBy(source)
         if self.debug:
             print "ChangeMaster.addSource", source
         source.setServiceParent(self)
    
    
        
	- Previous message (by thread): [Buildbot-commits] buildbot/buildbot/test runutils.py, 1.17,	1.18 test_changes.py, 1.9, 1.10 test_config.py, 1.40,	1.41 test_control.py, 1.13, 1.14 test_dependencies.py, 1.5,	1.6 test_locks.py, 1.7, 1.8 test_p4poller.py, 1.3,	1.4 test_properties.py, 1.5, 1.6 test_run.py, 1.42,	1.43 test_scheduler.py, 1.11, 1.12 test_shell.py, 1.4,	1.5 test_slavecommand.py, 1.23, 1.24 test_slaves.py, 1.5,	1.6 test_status.py, 1.35, 1.36 test_steps.py, 1.34,	1.35 test_transfer.py, 1.4, 1.5 test_vc.py, 1.69,	1.70 test_web.py, 1.37, 1.38
 
	- Next message (by thread): [Buildbot-commits] buildbot/buildbot/process buildstep.py,1.2,1.3
 
         -  Messages sorted by: 
              [ date ]
              [ thread ]
              [ subject ]
              [ author ]
         
 
       
More information about the Commits
mailing list