[Zodb-checkins] SVN: ZODB/branches/3.5/src/ fix recurring typo:
occured --> occurred
Fred L. Drake, Jr.
fdrake at gmail.com
Wed Nov 30 01:49:17 EST 2005
Log message for revision 40424:
fix recurring typo: occured --> occurred
Changed:
U ZODB/branches/3.5/src/ZEO/Exceptions.py
U ZODB/branches/3.5/src/ZODB/FileStorage/FileStorage.py
U ZODB/branches/3.5/src/ZODB/POSException.py
U ZODB/branches/3.5/src/transaction/_transaction.py
-=-
Modified: ZODB/branches/3.5/src/ZEO/Exceptions.py
===================================================================
--- ZODB/branches/3.5/src/ZEO/Exceptions.py 2005-11-30 06:29:00 UTC (rev 40423)
+++ ZODB/branches/3.5/src/ZEO/Exceptions.py 2005-11-30 06:49:17 UTC (rev 40424)
@@ -16,7 +16,7 @@
from ZODB.POSException import StorageError
class ClientStorageError(StorageError):
- """An error occured in the ZEO Client Storage."""
+ """An error occurred in the ZEO Client Storage."""
class UnrecognizedResult(ClientStorageError):
"""A server call returned an unrecognized result."""
Modified: ZODB/branches/3.5/src/ZODB/FileStorage/FileStorage.py
===================================================================
--- ZODB/branches/3.5/src/ZODB/FileStorage/FileStorage.py 2005-11-30 06:29:00 UTC (rev 40423)
+++ ZODB/branches/3.5/src/ZODB/FileStorage/FileStorage.py 2005-11-30 06:49:17 UTC (rev 40424)
@@ -890,7 +890,7 @@
self._file.write(p64(tl))
self._file.flush()
except:
- # Hm, an error occured writing out the data. Maybe the
+ # Hm, an error occurred writing out the data. Maybe the
# disk is full. We don't want any turd at the end.
self._file.truncate(self._pos)
raise
Modified: ZODB/branches/3.5/src/ZODB/POSException.py
===================================================================
--- ZODB/branches/3.5/src/ZODB/POSException.py 2005-11-30 06:29:00 UTC (rev 40423)
+++ ZODB/branches/3.5/src/ZODB/POSException.py 2005-11-30 06:49:17 UTC (rev 40424)
@@ -31,7 +31,7 @@
return oid_repr(self.args[0])
class TransactionError(POSError):
- """An error occured due to normal transaction processing."""
+ """An error occurred due to normal transaction processing."""
class TransactionFailedError(POSError):
"""Cannot perform an operation on a transaction that previously failed.
@@ -252,7 +252,7 @@
return _fmt_undo(self._oid, self._reason)
class MultipleUndoErrors(UndoError):
- """Several undo errors occured during a single transaction."""
+ """Several undo errors occurred during a single transaction."""
def __init__(self, errs):
# provide a reason and oid for clients that only look at that
Modified: ZODB/branches/3.5/src/transaction/_transaction.py
===================================================================
--- ZODB/branches/3.5/src/transaction/_transaction.py 2005-11-30 06:29:00 UTC (rev 40423)
+++ ZODB/branches/3.5/src/transaction/_transaction.py 2005-11-30 06:49:17 UTC (rev 40424)
@@ -446,7 +446,7 @@
# TODO: do we need to make this warning stronger?
# TODO: It would be nice if the system could be configured
# to stop committing transactions at this point.
- self.log.critical("A storage error occured during the second "
+ self.log.critical("A storage error occurred during the second "
"phase of the two-phase commit. Resources "
"may be in an inconsistent state.")
raise
More information about the Zodb-checkins
mailing list