the wait_for_numpeers= argument to client.upload() is optional: make both the code and the Interface reflect this

This commit is contained in:
Brian Warner
2007-12-06 18:36:58 -07:00
parent 192477e4a2
commit 0dc84963f1
2 changed files with 15 additions and 4 deletions

View File

@ -293,7 +293,7 @@ class Client(node.Node, Referenceable, testutil.PollMixin):
assert IMutableFileURI.providedBy(u), u
return MutableFileNode(self).init_from_uri(u)
def create_empty_dirnode(self, wait_for_numpeers):
def create_empty_dirnode(self, wait_for_numpeers=None):
n = NewDirectoryNode(self)
d = n.create(wait_for_numpeers=wait_for_numpeers)
d.addCallback(lambda res: n)
@ -305,7 +305,7 @@ class Client(node.Node, Referenceable, testutil.PollMixin):
d.addCallback(lambda res: n)
return d
def upload(self, uploadable, wait_for_numpeers):
def upload(self, uploadable, wait_for_numpeers=None):
uploader = self.getServiceNamed("uploader")
return uploader.upload(uploadable, wait_for_numpeers=wait_for_numpeers)