]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
encode_new.py: recent Foolscap accepts 'None' as a constraint
authorBrian Warner <warner@allmydata.com>
Wed, 17 Jan 2007 02:56:30 +0000 (19:56 -0700)
committerBrian Warner <warner@allmydata.com>
Wed, 17 Jan 2007 02:56:30 +0000 (19:56 -0700)
src/allmydata/encode_new.py

index df09f6d418f8a6ef86d8229084a35d4c2bca8439..0afb9d1f94bd53d99e4f3cea8745b5c27d42e01e 100644 (file)
@@ -206,19 +206,18 @@ class Encoder(object):
 
 
 from foolscap import RemoteInterface
-from foolscap.schema import ListOf, TupleOf, Nothing
-_None = Nothing()
+from foolscap.schema import ListOf, TupleOf
 
 
 class RIStorageBucketWriter(RemoteInterface):
     def put_subshare(segment_number=int, subshare=str):
-        return _None
+        return None
     def put_segment_hashes(all_hashes=ListOf(str)):
-        return _None
+        return None
     def put_share_hashes(needed_hashes=ListOf(TupleOf(int,str))):
-        return _None
+        return None
     #def write(data=str, offset=int):
-    #    return _None
+    #    return None
 class RIStorageBucketReader(RemoteInterface):
     def get_share_hashes():
         return ListOf(TupleOf(int,str))
@@ -228,5 +227,3 @@ class RIStorageBucketReader(RemoteInterface):
         return str
     #def read(size=int, offset=int):
     #    return str
-
-"figleaf doesn't like the last line of the file to be a comment"