~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/__init__.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:
284
284
 
285
285
        return combined
286
286
 
287
 
    def put(self, relpath, f, mode=None):
288
 
        """Copy the file-like or string object into the location.
 
287
    def put_file(self, relpath, f, mode=None):
 
288
        """Copy the file-like object into the location.
289
289
 
290
290
        :param relpath: Location to put the contents, relative to base.
291
 
        :param f:       File-like or string object.
 
291
        :param f:       File-like object.
292
292
        """
293
293
        raise TransportNotPossible('http PUT not supported')
294
294