From bc8ff33cd1aecd4ef3c0d83a096bf57cc05e7b36 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@allmydata.com>
Date: Wed, 18 Apr 2007 15:46:37 -0700
Subject: [PATCH] interfaces.py: remove spurious 'pass' statements (which,
 incidentally, were counted as uncovered code)

---
 src/allmydata/interfaces.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/allmydata/interfaces.py b/src/allmydata/interfaces.py
index f724ccd5..abb4ab5c 100644
--- a/src/allmydata/interfaces.py
+++ b/src/allmydata/interfaces.py
@@ -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."""
 
-- 
2.45.2