]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-95413: Remove references to deprecated CGI library (#95414)
authorpartev <petrosyan@gmail.com>
Tue, 30 Aug 2022 11:14:08 +0000 (07:14 -0400)
committerGitHub <noreply@github.com>
Tue, 30 Aug 2022 11:14:08 +0000 (13:14 +0200)
Doc/faq/general.rst
Doc/tutorial/whatnow.rst

index 510ebb5cf9046b998266adf9f6ed05c8d5e4769e..6c7e4fc67c0a67d8c04201c89cde94e2a424785c 100644 (file)
@@ -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
index 5f7010cb12e9e7a5e8ec5a6c559febee4f3aabb5..dbe2d7fc09927e2192a6fc2d7a58b15f11cbd5d9 100644 (file)
@@ -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.