[Buildbot-commits] buildbot/buildbot interfaces.py,1.40,1.41

Brian Warner warner at users.sourceforge.net
Mon May 22 08:16:27 UTC 2006


Update of /cvsroot/buildbot/buildbot/buildbot
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3999/buildbot

Modified Files:
	interfaces.py 
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-561
Creator:  Brian Warner <warner at lothar.com>

remove 'self' from IChangeSource argument list

	* buildbot/interfaces.py (IChangeSource): methods in Interfaces
	aren't supposed to have 'self' in their argument list


Index: interfaces.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/interfaces.py,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- interfaces.py	24 Apr 2006 06:45:36 -0000	1.40
+++ interfaces.py	22 May 2006 08:16:25 -0000	1.41
@@ -24,15 +24,15 @@
       self.changemaster.addChange(change)
     """
 
-    def start(self):
+    def start():
         """Called when the buildmaster starts. Can be used to establish
         connections to VC daemons or begin polling."""
 
-    def stop(self):
+    def stop():
         """Called when the buildmaster shuts down. Connections should be
         terminated, polling timers should be canceled."""
 
-    def describe(self):
+    def describe():
         """Should return a string which briefly describes this source. This
         string will be displayed in an HTML status page."""
 





More information about the Commits mailing list