[Buildbot-commits] buildbot/buildbot/process builder.py,1.34,1.35 base.py,1.61,1.62
Brian Warner
warner at users.sourceforge.net
Sun Mar 12 11:28:06 UTC 2006
Update of /cvsroot/buildbot/buildbot/buildbot/process
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13851/buildbot/process
Modified Files:
builder.py base.py
Log Message:
* buildbot/buildset.py (BuildSet.__init__): clean up docstring
* buildbot/status/html.py (Waterfall.__init__): same
* buildbot/process/builder.py (Builder.startBuild): same
* buildbot/process/base.py (BuildRequest): same
* buildbot/sourcestamp.py (SourceStamp): same
* buildbot/scheduler.py (Nightly): same
Index: base.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/process/base.py,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- base.py 26 Nov 2005 02:14:31 -0000 1.61
+++ base.py 12 Mar 2006 11:28:04 -0000 1.62
@@ -34,7 +34,7 @@
I am paired with a BuildRequestStatus object, to which I feed status
information.
- @type source: a L{buildbot.buildset.SourceStamp} instance.
+ @type source: a L{buildbot.sourcestamp.SourceStamp} instance.
@ivar source: the source code that this BuildRequest use
@type reason: string
Index: builder.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/process/builder.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- builder.py 5 Nov 2005 21:06:15 -0000 1.34
+++ builder.py 12 Mar 2006 11:28:04 -0000 1.35
@@ -473,12 +473,12 @@
def startBuild(self, build, sb):
"""Start a build on the given slave.
@param build: the L{base.Build} to start
- @param slave: the L{SlaveBuilder} which will host this build
+ @param sb: the L{SlaveBuilder} which will host this build
- @return: a Deferred which fires with a L{base.BuildControl} that can
- be used to stop the Build, or to access a
- L{buildbot.status.builder.BuildStatus} which will watch the Build as
- it runs. """
+ @return: a Deferred which fires with a
+ L{buildbot.interfaces.IBuildControl} that can be used to stop the
+ Build, or to access a L{buildbot.interfaces.IBuildStatus} which will
+ watch the Build as it runs. """
self.building.append(build)
More information about the Commits
mailing list