Example #1
0
    def move(self, dest):
        """Move the contents of a resource to another resource.

        This operation should be thought of like moving the contents of
        a file from one path to another.
        """
        raise NoImplementation(self)
Example #2
0
 def to_resource(self, item):
     raise NoImplementation(self)
Example #3
0
 def _open(self):
     raise NoImplementation(self)
Example #4
0
 def open_write(self):
     raise NoImplementation(self)
Example #5
0
 def write(self, f, item):
     raise NoImplementation(self)
Example #6
0
 def open_read(self):
     """Return an iterator object."""
     raise NoImplementation(self)
Example #7
0
 def _delete(self):
     raise NoImplementation(cls)
Example #8
0
 def make_temp(cls):
     raise NoImplementation(cls)
Example #9
0
 def copy(self):
     raise NoImplementation(self)
Example #10
0
 def get_output_infos(self):
     raise NoImplementation(self)