Skip to content

Commit

Permalink
update issue number (bpo->gh)
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Aug 13, 2023
1 parent 8bb91de commit d49e89b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/test/test_httpservers.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class request_handler(BaseHTTPRequestHandler):
default_request_version = 'HTTP/1.1'

def do_GET(self):
# bpo-25095: Tell the client we're not sending any content along
# gh-69282: Tell the client we're not sending any content along
# with the response code.
self.send_response(HTTPStatus.OK)
self.send_header('Content-Length', 0)
Expand All @@ -334,7 +334,7 @@ def test_get(self):
self.con.connect()

with support.captured_stderr() as err:
# bpo-25095: HTTP/1.1 specifies that the socket connection is to
# gh-69282: HTTP/1.1 specifies that the socket connection is to
# remain open, this, on certain systems, causes Python to deadlock
# waiting for the socket to close.
# To combat this, we send the test server the "Connection" header
Expand Down

0 comments on commit d49e89b

Please sign in to comment.