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

erlend-aasland webhook-mailer at python.org
Tue Aug 30 07:14:16 EDT 2022


https://github.com/python/cpython/commit/b17aae8bbd13bec28b7ecbb5a147503f2e9cf365
commit: b17aae8bbd13bec28b7ecbb5a147503f2e9cf365
branch: main
author: partev <petrosyan at gmail.com>
committer: erlend-aasland <erlend.aasland at protonmail.com>
date: 2022-08-30T13:14:08+02:00
summary:

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

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