[Python-checkins] peps: Fix small typo.

barry.warsaw python-checkins at python.org
Fri Apr 12 16:41:39 CEST 2013


http://hg.python.org/peps/rev/c1f42c235ad9
changeset:   4850:c1f42c235ad9
user:        Barry Warsaw <barry at python.org>
date:        Fri Apr 12 10:24:13 2013 -0400
summary:
  Fix small typo.

files:
  pep-0435.txt |  5 +++--
  1 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/pep-0435.txt b/pep-0435.txt
--- a/pep-0435.txt
+++ b/pep-0435.txt
@@ -255,8 +255,9 @@
     >>> Colors.blue is not OtherColors.blue
     True
 
-These enumeration values are not equal, nor do they and hence may exist
-in the same set, or as distinct keys in the same dictionary::
+Because ``Colors`` and ``OtherColors`` are unrelated enumerations,
+their values are not equal, and thus they may exist in the same set,
+or as distinct keys in the same dictionary::
 
     >>> Colors.red == OtherColors.red
     False

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


More information about the Python-checkins mailing list