From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 6 Apr 2025 08:29:09 +0000 (+0200) Subject: [3.12] Docs: Replace dead hyperlink for CGI environment variables (GH-132137) (#132151) X-Git-Tag: v3.12.10~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0bfb3ba9742989491ebdd7b4d5cee6f00282b100;p=thirdparty%2FPython%2Fcpython.git [3.12] Docs: Replace dead hyperlink for CGI environment variables (GH-132137) (#132151) Docs: Replace dead hyperlink for CGI environment variables (GH-132137) (cherry picked from commit 0a10b45dd16a8c971363d917b9ebd1266e65f710) Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) --- 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()