From 6305d1a0b75d0f4a01dbf7cd048b7d0a57a6b40b Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Fri, 17 Sep 2010 14:20:26 -0400 Subject: [PATCH] fix indentation --- files.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files.html b/files.html index 018b87c..203fe46 100644 --- a/files.html +++ b/files.html @@ -464,16 +464,16 @@ AttributeError: 'GzipFile' object has no attribute '__exit__'
 >>> for i in range(3):
-...     print('PapayaWhip')        
+...     print('PapayaWhip')            
 PapayaWhip
 PapayaWhip
 PapayaWhip
 >>> import sys
 >>> for i in range(3):
-... sys.stdout.write('is the')     
+...     sys.stdout.write('is the')     
 is theis theis the
 >>> for i in range(3):
-... sys.stderr.write('new black')  
+...     sys.stderr.write('new black')  
 new blacknew blacknew black
  1. The print() function, in a loop. Nothing surprising here.