/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/readonly.py

  • Committer: Jelmer Vernooij
  • Date: 2009-02-25 14:36:59 UTC
  • mfrom: (4048 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4049.
  • Revision ID: jelmer@samba.org-20090225143659-vx6cbqtmyicuzfyf
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    def append_file(self, relpath, f, mode=None):
30
30
        """See Transport.append_file()."""
31
31
        raise TransportNotPossible('readonly transport')
32
 
    
 
32
 
33
33
    def append_bytes(self, relpath, bytes, mode=None):
34
34
        """See Transport.append_bytes()."""
35
35
        raise TransportNotPossible('readonly transport')
36
 
    
 
36
 
37
37
    @classmethod
38
38
    def _get_url_prefix(self):
39
39
        """Readonly transport decorators are invoked via 'readonly+'"""