[Python-checkins] peps: remove trailing ws

benjamin.peterson python-checkins at python.org
Fri Jan 2 19:10:59 CET 2015


https://hg.python.org/peps/rev/aaffbaf67933
changeset:   5653:aaffbaf67933
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Jan 02 12:10:41 2015 -0600
summary:
  remove trailing ws

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


diff --git a/pep-0008.txt b/pep-0008.txt
--- a/pep-0008.txt
+++ b/pep-0008.txt
@@ -967,13 +967,13 @@
 - Use ``is not`` operator rather than ``not ... is``.  While both
   expressions are functionally identical, the former is more readable
   and preferred.
-  
+
   Yes::
-  
+
       if foo is not None:
-      
+
   No::
-  
+
       if not foo is None:
 
 - When implementing ordering operations with rich comparisons, it is

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


More information about the Python-checkins mailing list