~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-04-16 08:02:54 UTC
  • mfrom: (2414.1.3 hpss-miscellany-2)
  • Revision ID: pqm@pqm.ubuntu.com-20070416080254-bf3rfk77k5bgfdl7
(Andrew Bennetts) Add some unicode-related tests from the hpss branch, and a few other nits (also from the hpss branch).

Show diffs side-by-side

added added

removed removed

Lines of Context:
508
508
class SmartClientHTTPMediumRequest(medium.SmartClientMediumRequest):
509
509
    """A SmartClientMediumRequest that works with an HTTP medium."""
510
510
 
511
 
    def __init__(self, smart_medium):
512
 
        medium.SmartClientMediumRequest.__init__(self, smart_medium)
 
511
    def __init__(self, client_medium):
 
512
        medium.SmartClientMediumRequest.__init__(self, client_medium)
513
513
        self._buffer = ''
514
514
 
515
515
    def _accept_bytes(self, bytes):