diff options
author | Tim Peters <tim.peters@gmail.com> | 2007-01-30 03:03:46 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2007-01-30 03:03:46 (GMT) |
commit | f733abb7831d6566cb0fccd0550d58ec3b7f05a4 (patch) | |
tree | 4466e9eccc1b441e60841c16d48915f20216178e /Lib/mailbox.py | |
parent | 15c1fe5047f94942f1e784ac7614f9f5370adb47 (diff) | |
download | cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.zip cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.gz cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/mailbox.py')
-rwxr-xr-x | Lib/mailbox.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py index 6580099..520afeb 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' % |