diff options
author | Skip Montanaro <skip@pobox.com> | 2003-02-25 17:48:15 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-02-25 17:48:15 (GMT) |
commit | 74b9a7a71f6da74da872198dcb226ec1e7fbe966 (patch) | |
tree | 03a4dbfb6f9fe0e85ad5ebf897be2f25fc576a7c /Lib/httplib.py | |
parent | 12fe72e9dfaebc13258e329c6c93ad48e3a261a9 (diff) | |
download | cpython-74b9a7a71f6da74da872198dcb226ec1e7fbe966.zip cpython-74b9a7a71f6da74da872198dcb226ec1e7fbe966.tar.gz cpython-74b9a7a71f6da74da872198dcb226ec1e7fbe966.tar.bz2 |
typo
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r-- | Lib/httplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index e98fa46..088e3f3 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -1140,7 +1140,7 @@ class LineAndFileWrapper: def _done(self): # called when the last byte is read from the line. After the # call, all read methods are delegated to the underlying file - # obhect. + # object. self._line_consumed = 1 self.read = self._file.read self.readline = self._file.readline |