[Python-checkins] r46201 - python/trunk/Lib/struct.py

tim.peters python-checkins at python.org
Wed May 24 22:29:44 CEST 2006


Author: tim.peters
Date: Wed May 24 22:29:44 2006
New Revision: 46201

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


Modified: python/trunk/Lib/struct.py
==============================================================================
--- python/trunk/Lib/struct.py	(original)
+++ python/trunk/Lib/struct.py	Wed May 24 22:29:44 2006
@@ -73,7 +73,7 @@
     except KeyError:
         o = _compile(fmt)
     return o.unpack(s)
-    
+
 def unpack_from(fmt, buf, offset=0):
     """
     Unpack the buffer, containing packed C structure data, according to
@@ -84,4 +84,4 @@
         o = _cache[fmt]
     except KeyError:
         o = _compile(fmt)
-    return o.unpack_from(buf, offset)
\ No newline at end of file
+    return o.unpack_from(buf, offset)


More information about the Python-checkins mailing list