summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-15 02:14:19 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-15 02:14:19 (GMT)
commit6a8163a928f9ff04242580c09216431ddd39cdbc (patch)
treef488fcfc631d8663003cd5784bba970d3e6438f9 /Misc
parent8feff8f1ddf870f4a68facf7127097cec97ebc39 (diff)
downloadcpython-6a8163a928f9ff04242580c09216431ddd39cdbc.zip
cpython-6a8163a928f9ff04242580c09216431ddd39cdbc.tar.gz
cpython-6a8163a928f9ff04242580c09216431ddd39cdbc.tar.bz2
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
This affects documentation and code comments.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/HISTORY2
-rw-r--r--Misc/NEWS8
2 files changed, 5 insertions, 5 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY
index b9e74da..60635fb 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -8024,7 +8024,7 @@ Core language, builtins, and interpreter
- There is a new Unicode companion to the PyObject_Str() API
called PyObject_Unicode(). It behaves in the same way as the
- former, but assures that the returned value is an Unicode object
+ former, but assures that the returned value is a Unicode object
(applying the usual coercion if necessary).
- The comparison operators support "rich comparison overloading" (PEP
diff --git a/Misc/NEWS b/Misc/NEWS
index cebb5a5..9288612 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -5992,7 +5992,7 @@ Core and Builtins
- Issue #8211: Save/restore CFLAGS around AC_PROG_CC in configure.in, in case it
is set.
-- Issue #1583863: An unicode subclass can now override the __unicode__ method
+- Issue #1583863: A unicode subclass can now override the __unicode__ method
- Issue #6474: Make error message from passing an inadequate number of keyword
arguments to a function correct.
@@ -6497,7 +6497,7 @@ Library
when the release file is empty.
- Issue #7748: Since unicode values are supported for some metadata options in
- Distutils, the DistributionMetadata get_* methods will now return an utf-8
+ Distutils, the DistributionMetadata get_* methods will now return a utf-8
encoded string for them. This ensures that the upload and register commands
send the correct values to PyPI without any error.
@@ -8873,7 +8873,7 @@ Library
- Silence the DeprecationWarning raised when importing mimetools in
BaseHTTPServer, cgi (and rfc822), httplib.
-- Issue #2776: fixed small issue when handling an URL with double slash
+- Issue #2776: fixed small issue when handling a URL with double slash
after a 302 response in the case of not going through a proxy.
- Issue #2676: in the email package, content-type parsing was hanging on
@@ -10205,7 +10205,7 @@ Core and builtins
``object.__reduce_ex__()`` is called with an object that is faking
its type.
-- Patch #1680015: Don't modify __slots__ tuple if it contains an
+- Patch #1680015: Don't modify __slots__ tuple if it contains a
unicode name.
- Patch #1444529: the builtin compile() now accepts keyword arguments.