summaryrefslogtreecommitdiff
path: root/Lib/mailbox.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2007-01-30 03:03:46 +0000
committerTim Peters <tim.peters@gmail.com>2007-01-30 03:03:46 +0000
commit534e95c9b9afa0347dd02132e03f6f6af8a8ad38 (patch)
treed126172ae71a486ae2dd56bcccc3d74f56be778f /Lib/mailbox.py
parent1e415e909309a9a0bc92f41ee97e96e87f65c4ac (diff)
downloadcpython-534e95c9b9afa0347dd02132e03f6f6af8a8ad38.tar.gz
Whitespace normalization.
Diffstat (limited to 'Lib/mailbox.py')
-rwxr-xr-xLib/mailbox.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py
index 6580099331..520afebb3c 100755
--- a/Lib/mailbox.py
+++ b/Lib/mailbox.py
@@ -572,7 +572,7 @@ class _singlefileMailbox(Mailbox):
# already have been generated (and presumably has been modified
# by adding or deleting an item).
assert self._toc is not None
-
+
# Check length of self._file; if it's changed, some other process
# has modified the mailbox since we scanned it.
self._file.seek(0, 2)
@@ -581,7 +581,7 @@ class _singlefileMailbox(Mailbox):
raise ExternalClashError('Size of mailbox file changed '
'(expected %i, found %i)' %
(self._file_length, cur_len))
-
+
new_file = _create_temporary(self._path)
try:
new_toc = {}
@@ -1222,7 +1222,7 @@ class Babyl(_singlefileMailbox):
self._next_key = len(self._toc)
self._file.seek(0, 2)
self._file_length = self._file.tell()
-
+
def _pre_mailbox_hook(self, f):
"""Called before writing the mailbox to file f."""
f.write('BABYL OPTIONS:%sVersion: 5%sLabels:%s%s\037' %