~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-09 18:02:00 UTC
  • mfrom: (1963.2.7 bzr.dev.no_has_key)
  • Revision ID: pqm@pqm.ubuntu.com-20060909180200-96e41112dff213f3
(robey) remove hasattr and == None in favor of getattr() and is None

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
 
95
95
    def listable(self):
96
96
        """Return True if this store is able to be listed."""
97
 
        return hasattr(self, "__iter__")
 
97
        return (getattr(self, "__iter__", None) is not None)
98
98
 
99
99
    def copy_all_ids(self, store_from, pb=None):
100
100
        """Copy all the file ids from store_from into self."""