[Python-checkins] bpo-44740: Make minor edits to lowercasing "internet" and "web". (GH-27385) (#27386)

ambv webhook-mailer at python.org
Tue Jul 27 05:20:19 EDT 2021


https://github.com/python/cpython/commit/be2415487ab80e4bd5ace2954651e78b107b17e4
commit: be2415487ab80e4bd5ace2954651e78b107b17e4
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-07-27T11:20:11+02:00
summary:

bpo-44740: Make minor edits to lowercasing "internet" and "web". (GH-27385) (#27386)

Follow up to 11749e2dc20ad6a76e9a39e948853e89b2b4bbed
(cherry picked from commit 2e41df4d60d71a2551b9605d07321f75cfb52adf)

Co-authored-by: Mariusz Felisiak <felisiak.mariusz at gmail.com>

files:
M Doc/howto/ipaddress.rst
M Doc/library/http.server.rst
M Doc/whatsnew/2.3.rst
M Misc/HISTORY

diff --git a/Doc/howto/ipaddress.rst b/Doc/howto/ipaddress.rst
index 46ba69a59b6a7..e852db98156fa 100644
--- a/Doc/howto/ipaddress.rst
+++ b/Doc/howto/ipaddress.rst
@@ -32,7 +32,7 @@ A Note on IP Versions
 ---------------------
 
 For readers that aren't particularly familiar with IP addressing, it's
-important to know that the internet protocol is currently in the process
+important to know that the Internet Protocol (IP) is currently in the process
 of moving from version 4 of the protocol to version 6. This transition is
 occurring largely because version 4 of the protocol doesn't provide enough
 addresses to handle the needs of the whole world, especially given the
diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst
index 1aa0cba8fbc29..5ffe6baa12bde 100644
--- a/Doc/library/http.server.rst
+++ b/Doc/library/http.server.rst
@@ -14,7 +14,7 @@
 
 --------------
 
-This module defines classes for implementing HTTP servers (web servers).
+This module defines classes for implementing HTTP servers.
 
 
 .. warning::
diff --git a/Doc/whatsnew/2.3.rst b/Doc/whatsnew/2.3.rst
index 7d09302633636..cf5552064cf4a 100644
--- a/Doc/whatsnew/2.3.rst
+++ b/Doc/whatsnew/2.3.rst
@@ -672,7 +672,7 @@ with older versions of the Distutils::
    from distutils import core
    kw = {'name': "Quixote",
          'version': "0.5.1",
-         'description': "A highly Pythonic web application framework",
+         'description': "A highly Pythonic Web application framework",
          # ...
          }
 
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 2046b0a918cc3..32d814c31bfd1 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -31454,7 +31454,7 @@ aimed at a web server, checks that server for dead links.  Available
 are a command line utility as well as a Tkinter based GUI version.  In
 Tools/webchecker.  A simplified version of this program is dissected
 in my article in O'Reilly's WWW Journal, the issue on Scripting
-Languages (Vol 2, No 2); Scripting the web with Python (pp 97-120).
+Languages (Vol 2, No 2); Scripting the Web with Python (pp 97-120).
 Includes a parser for robots.txt files by Skip Montanaro.
 
 - New small tools: cvsfiles.py (prints a list of all files under CVS



More information about the Python-checkins mailing list