[Python-checkins] peps: Trim trailing whitespace

eli.bendersky python-checkins at python.org
Thu Apr 4 15:52:58 CEST 2013


http://hg.python.org/peps/rev/1be7cfe9fb04
changeset:   4833:1be7cfe9fb04
user:        Eli Bendersky <eliben at gmail.com>
date:        Thu Apr 04 06:52:41 2013 -0700
summary:
  Trim trailing whitespace

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


diff --git a/pep-0435.txt b/pep-0435.txt
--- a/pep-0435.txt
+++ b/pep-0435.txt
@@ -317,7 +317,7 @@
     >>> class SpecialId(Enum):
     ...   selector = '$IM($N)'
     ...   adaptor = '~$IM'
-    ... 
+    ...
     >>> SpecialId.selector
     <EnumValue: SpecialId.selector [value=$IM($N)]>
     >>> SpecialId.selector.value
@@ -415,7 +415,7 @@
     >>> Animals = Enum('Animals', 'ant bee cat dog')
     >>> Animals
     <Animals {ant: 1, bee: 2, cat: 3, dog: 4}>
-    >>> 
+    >>>
     >>> Animals.ant
     <EnumValue: Animals.ant [value=1]>
     >>> Animals.ant.value

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


More information about the Python-checkins mailing list