~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2007-12-06 22:46:16 UTC
  • mto: (2929.3.16 https) (3097.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 3099.
  • Revision ID: v.ladeuil+lp@free.fr-20071206224616-wn217wlduoe4rdkh
Fix typos mentioned by spiv.

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
            self.will_close = False
125
125
 
126
126
    def finish(self):
127
 
        """Finish reading the bdy.
 
127
        """Finish reading the body.
128
128
 
129
 
        In some cases, the client may have leave some bytes to read in the
 
129
        In some cases, the client may have left some bytes to read in the
130
130
        body. That will block the next request to succeed if we use a
131
 
        persistent connection. If we don't use a persitent connection, well,
 
131
        persistent connection. If we don't use a persistent connection, well,
132
132
        nothing will block the next request since a new connection will be
133
133
        issued anyway.
134
134
        """