From 0bfb3ba9742989491ebdd7b4d5cee6f00282b100 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 6 Apr 2025 10:29:09 +0200 Subject: [PATCH] [3.12] Docs: Replace dead hyperlink for CGI environment variables (GH-132137) (#132151) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Docs: Replace dead hyperlink for CGI environment variables (GH-132137) (cherry picked from commit 0a10b45dd16a8c971363d917b9ebd1266e65f710) Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) --- Lib/http/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/http/server.py b/Lib/http/server.py index ca6240d9a921..0f2f3f6eec3b 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -1098,7 +1098,7 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler): "CGI script is not executable (%r)" % scriptname) return - # Reference: http://hoohoo.ncsa.uiuc.edu/cgi/env.html + # Reference: https://www6.uniovi.es/~antonio/ncsa_httpd/cgi/env.html # XXX Much of the following could be prepared ahead of time! env = copy.deepcopy(os.environ) env['SERVER_SOFTWARE'] = self.version_string() -- 2.47.3