[Python-checkins] peps: Fix two "space not found" warnings in PEP-404.

ezio.melotti python-checkins at python.org
Thu Nov 17 17:45:43 CET 2011


http://hg.python.org/peps/rev/d6d7a35ff9f4
changeset:   3991:d6d7a35ff9f4
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Thu Nov 17 18:45:29 2011 +0200
summary:
  Fix two "space not found" warnings in PEP-404.

files:
  pep-0404.txt |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/pep-0404.txt b/pep-0404.txt
--- a/pep-0404.txt
+++ b/pep-0404.txt
@@ -93,7 +93,7 @@
 fundamental ambiguity of the core string type, coupled with Python 2's
 default behavior of supporting automatic coercion from 8-bit strings
 to unicode objects when the two are combined, often leads to
-`UnicodeError`s. Python 3's standard string type is Unicode based, and
+`UnicodeError`\ s. Python 3's standard string type is Unicode based, and
 Python 3 adds a dedicated bytes type, but critically, no automatic coercion
 between bytes and unicode strings is provided. The closest the language gets
 to implicit coercion are a few text-based APIs that assume a default
@@ -106,7 +106,7 @@
 This string/bytes clarity is often a source of difficulty in
 transitioning existing code to Python 3, because many third party
 libraries and applications are themselves ambiguous in this
-distinction.  Once migrated though, most `UnicodeError`s can be
+distinction.  Once migrated though, most `UnicodeError`\ s can be
 eliminated.
 
 

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list