~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/symbol_versioning.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:
280
280
            return self._warn_deprecated(list.remove, value)
281
281
 
282
282
        def pop(self, index=None):
283
 
            """pop'ing from from %s is deprecated""" % (variable_name,)
 
283
            """pop'ing from %s is deprecated""" % (variable_name,)
284
284
            if index:
285
285
                return self._warn_deprecated(list.pop, index)
286
286
            else: