diff options
author | Steve Holden <steve@holdenweb.com> | 2002-08-04 15:27:25 (GMT) |
---|---|---|
committer | Steve Holden <steve@holdenweb.com> | 2002-08-04 15:27:25 (GMT) |
commit | c8389c91c2c3f53c0b833b2a1ab283775515075b (patch) | |
tree | 8c6aeec15e7b8d5d11647058a51285049b78b2ec /Doc | |
parent | d6359c55cc69446bb2f61ca7bb5addbefe17a4b4 (diff) | |
download | cpython-c8389c91c2c3f53c0b833b2a1ab283775515075b.zip cpython-c8389c91c2c3f53c0b833b2a1ab283775515075b.tar.gz cpython-c8389c91c2c3f53c0b833b2a1ab283775515075b.tar.bz2 |
Remove a syntax error in the example, spotted by Walter Hofman.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libasynchat.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libasynchat.tex b/Doc/lib/libasynchat.tex index eea4f18..79d4c65 100644 --- a/Doc/lib/libasynchat.tex +++ b/Doc/lib/libasynchat.tex @@ -235,7 +235,7 @@ class http_request_handler(asynchat.async_chat): def found_terminator(self): if self.reading_headers: self.reading_headers = False - self.parse_headers("".join(self.ibuffer) + self.parse_headers("".join(self.ibuffer)) self.ibuffer = [] if self.op.upper() == "POST": clen = self.headers.getheader("content-length") |