interfaces.py: remove spurious 'pass' statements (which, incidentally, were counted as uncovered code)

This commit is contained in:
Brian Warner 2007-04-18 15:46:37 -07:00
parent 91d72bb504
commit bc8ff33cd1

View File

@ -198,7 +198,6 @@ class ICodecEncoder(Interface):
producing shares for the peers which are no longer available.
"""
pass
def encode(inshares, desired_share_ids=None):
"""Encode some data. This may be called multiple times. Each call is
@ -443,7 +442,7 @@ class IUploader(Interface):
returns a Deferred which fires with the URI of the file."""
def upload_ssk(write_capability, new_version, uploadable):
pass # TODO
"""TODO: how should this work?"""
def upload_data(data):
"""Like upload(), but accepts a string."""