[Python-checkins] r42507 - python/trunk/Lib/fileinput.py

tim.peters python-checkins at python.org
Sun Feb 19 22:26:10 CET 2006


Author: tim.peters
Date: Sun Feb 19 22:26:07 2006
New Revision: 42507

Modified:
   python/trunk/Lib/fileinput.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/fileinput.py
==============================================================================
--- python/trunk/Lib/fileinput.py	(original)
+++ python/trunk/Lib/fileinput.py	Sun Feb 19 22:26:07 2006
@@ -88,7 +88,7 @@
 
 DEFAULT_BUFSIZE = 8*1024
 
-def input(files=None, inplace=0, backup="", bufsize=0, 
+def input(files=None, inplace=0, backup="", bufsize=0,
           mode="r", openhook=None):
     """input([files[, inplace[, backup[, mode[, openhook]]]]])
 
@@ -194,7 +194,7 @@
     sequential order; random access and readline() cannot be mixed.
     """
 
-    def __init__(self, files=None, inplace=0, backup="", bufsize=0, 
+    def __init__(self, files=None, inplace=0, backup="", bufsize=0,
                  mode="r", openhook=None):
         if isinstance(files, basestring):
             files = (files,)


More information about the Python-checkins mailing list