]> granicus.if.org Git - python/commitdiff
Add grammatical article to “an ASCII letter”
authorMartin Panter <vadmium+py@gmail.com>
Sun, 12 Jun 2016 06:17:29 +0000 (06:17 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sun, 12 Jun 2016 06:17:29 +0000 (06:17 +0000)
Doc/library/re.rst
Misc/NEWS

index 337365c189e43da05c21177ee3f5e93f2e6852ac..dfbedd48c9e205fdb051b464cb0614b3addf8280 100644 (file)
@@ -321,7 +321,7 @@ The special characters are:
 
 
 The special sequences consist of ``'\'`` and a character from the list below.
-If the ordinary character is not ASCII digit or ASCII letter, then the
+If the ordinary character is not an ASCII digit or an ASCII letter, then the
 resulting RE will match the second character.  For example, ``\$`` matches the
 character ``'$'``.
 
@@ -444,7 +444,7 @@ three digits in length.
    The ``'\u'`` and ``'\U'`` escape sequences have been added.
 
 .. versionchanged:: 3.6
-   Unknown escapes consisting of ``'\'`` and ASCII letter now are errors.
+   Unknown escapes consisting of ``'\'`` and an ASCII letter now are errors.
 
 
 .. seealso::
@@ -743,7 +743,7 @@ form.
       Unmatched groups are replaced with an empty string.
 
    .. versionchanged:: 3.6
-      Unknown escapes consisting of ``'\'`` and ASCII letter now are errors.
+      Unknown escapes consisting of ``'\'`` and an ASCII letter now are errors.
 
 
 .. function:: subn(pattern, repl, string, count=0, flags=0)
index 551574dd250dbe979d462749d76b52822c7e2334..2680d05aec8b23a45ebd33468e06b2665285baf8 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,7 +56,7 @@ Library
 - Issue #27029: Removed deprecated support of universal newlines mode from
   ZipFile.open().
 
-- Issue #27030: Unknown escapes consisting of ``'\'`` and ASCII letter in
+- Issue #27030: Unknown escapes consisting of ``'\'`` and an ASCII letter in
   regular expressions now are errors.  The re.LOCALE flag now can be used
   only with bytes patterns.