~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/xml8.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-06 04:33:55 UTC
  • mfrom: (4031.3.3 faspell-typos)
  • Revision ID: pqm@pqm.ubuntu.com-20090406043355-a94p92pr191lpmv1
(Matt Nordhoff, Frank Aspell) Fix typos in documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
        """Extension point for subclasses to check during serialisation.
165
165
 
166
166
        :param inv: An inventory about to be serialised, to be checked.
167
 
        :raises: AssertionError if an error has occured.
 
167
        :raises: AssertionError if an error has occurred.
168
168
        """
169
169
        if inv.revision_id is None:
170
170
            raise AssertionError()
426
426
        if entry_cache is not None and revision is not None:
427
427
            key = (file_id, revision)
428
428
            try:
429
 
                # We copy it, because some operatations may mutate it
 
429
                # We copy it, because some operations may mutate it
430
430
                cached_ie = entry_cache[key]
431
431
            except KeyError:
432
432
                pass