[Python-checkins] gh-95413: Remove references to deprecated CGI library (GH-95414)

miss-islington webhook-mailer at python.org
Tue Aug 30 07:22:36 EDT 2022


https://github.com/python/cpython/commit/a1671a97d35dcec1df2152150fb0790b74d84729
commit: a1671a97d35dcec1df2152150fb0790b74d84729
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-08-30T04:22:19-07:00
summary:

gh-95413: Remove references to deprecated CGI library (GH-95414)

(cherry picked from commit b17aae8bbd13bec28b7ecbb5a147503f2e9cf365)

Co-authored-by: partev <petrosyan at gmail.com>

files:
M Doc/faq/general.rst
M Doc/tutorial/whatnow.rst

diff --git a/Doc/faq/general.rst b/Doc/faq/general.rst
index 510ebb5cf904..6c7e4fc67c0a 100644
--- a/Doc/faq/general.rst
+++ b/Doc/faq/general.rst
@@ -113,8 +113,8 @@ to many different classes of problems.
 
 The language comes with a large standard library that covers areas such as
 string processing (regular expressions, Unicode, calculating differences between
-files), internet protocols (HTTP, FTP, SMTP, XML-RPC, POP, IMAP, CGI
-programming), software engineering (unit testing, logging, profiling, parsing
+files), internet protocols (HTTP, FTP, SMTP, XML-RPC, POP, IMAP),
+software engineering (unit testing, logging, profiling, parsing
 Python code), and operating system interfaces (system calls, filesystems, TCP/IP
 sockets).  Look at the table of contents for :ref:`library-index` to get an idea
 of what's available.  A wide variety of third-party extensions are also
diff --git a/Doc/tutorial/whatnow.rst b/Doc/tutorial/whatnow.rst
index 5f7010cb12e9..dbe2d7fc0992 100644
--- a/Doc/tutorial/whatnow.rst
+++ b/Doc/tutorial/whatnow.rst
@@ -17,7 +17,7 @@ the set are:
   reference material about types, functions, and the modules in the standard
   library.  The standard Python distribution includes a *lot* of additional code.
   There are modules to read Unix mailboxes, retrieve documents via HTTP, generate
-  random numbers, parse command-line options, write CGI programs, compress data,
+  random numbers, parse command-line options, compress data,
   and many other tasks. Skimming through the Library Reference will give you an
   idea of what's available.
 



More information about the Python-checkins mailing list