~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/readonly.py

  • Committer: John Arbash Meinel
  • Date: 2006-09-05 19:34:34 UTC
  • mto: (1946.2.8 reduce-knit-churn)
  • mto: This revision was merged to the branch mainline in revision 1988.
  • Revision ID: john@arbash-meinel.com-20060905193434-2ae27ba5c50bae61
Lots of deprecation warnings, but no errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
        """See Transport.delete_tree()."""
44
44
        raise TransportNotPossible('readonly transport')
45
45
 
46
 
    def put(self, relpath, f, mode=None):
47
 
        """See Transport.put()."""
 
46
    def put_file(self, relpath, f, mode=None):
 
47
        """See Transport.put_file()."""
 
48
        raise TransportNotPossible('readonly transport')
 
49
 
 
50
    def put_bytes(self, relpath, bytes, mode=None):
 
51
        """See Transport.put_bytes()."""
48
52
        raise TransportNotPossible('readonly transport')
49
53
 
50
54
    def mkdir(self, relpath, mode=None):