summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-08-30 11:22:19 (GMT)
committerGitHub <noreply@github.com>2022-08-30 11:22:19 (GMT)
commita1671a97d35dcec1df2152150fb0790b74d84729 (patch)
tree8108aeecc161feb0c1a422677786329f6886e65e
parentd9d0d097a298132773e72a5a0a25eec19645140e (diff)
downloadcpython-a1671a97d35dcec1df2152150fb0790b74d84729.zip
cpython-a1671a97d35dcec1df2152150fb0790b74d84729.tar.gz
cpython-a1671a97d35dcec1df2152150fb0790b74d84729.tar.bz2
gh-95413: Remove references to deprecated CGI library (GH-95414)
(cherry picked from commit b17aae8bbd13bec28b7ecbb5a147503f2e9cf365) Co-authored-by: partev <petrosyan@gmail.com>
-rw-r--r--Doc/faq/general.rst4
-rw-r--r--Doc/tutorial/whatnow.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/faq/general.rst b/Doc/faq/general.rst
index 510ebb5..6c7e4fc 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 5f7010c..dbe2d7f 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.