mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Remove a syntax error in the example, spotted by Walter Hofman.
This commit is contained in:
parent
d6359c55cc
commit
c8389c91c2
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue