Whitespace normalization. Ugh, we really need to do this more often.
You might want to review this change as it's my first time. Be gentle. :-)
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index bb23785..c0e34bc 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -38,9 +38,9 @@
import Carbon.Folders as _Folders
try:
- from cStringIO import StringIO as _StringIO
+ from cStringIO import StringIO as _StringIO
except:
- from StringIO import StringIO as _StringIO
+ from StringIO import StringIO as _StringIO
try:
import fcntl as _fcntl
@@ -510,7 +510,7 @@
newfile.seek(file.tell(), 0)
self._rolled = True
-
+
# file protocol
def __iter__(self):
return self._file.__iter__()