BugDir.list_uuids() -> BugDir.uuids()
authorW. Trevor King <wking@drexel.edu>
Sun, 29 Nov 2009 01:24:19 +0000 (20:24 -0500)
committerW. Trevor King <wking@drexel.edu>
Sun, 29 Nov 2009 01:24:19 +0000 (20:24 -0500)
becommands/comment.py
becommands/target.py
libbe/bugdir.py
libbe/diff.py

index 8e899ce3955643e9c1cc7adc3d397a13b3874f00..fbc994f38bf5bddfcad9fe58973678176f1aeeb5 100644 (file)
@@ -145,7 +145,7 @@ def complete(options, args, parser):
                     bd = bugdir.BugDir(from_disk=True,
                                        manipulate_encodings=False)
                     bugs = []
-                    for uuid in bd.list_uuids():
+                    for uuid in bd.uuids():
                         if uuid.startswith(partial):
                             bug = bd.bug_from_uuid(uuid)
                             if bug.active == True:
index efb247942d0bb805fa9a8949ac01b143b99cea27..9a202b1d25df4ca223ccc7b6033231d718cf6f15 100644 (file)
@@ -50,7 +50,7 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
     bd = bugdir.BugDir(from_disk=True,
                        manipulate_encodings=manipulate_encodings)
     if options.list:
-        ts = set([bd.bug_from_uuid(bug).target for bug in bd.list_uuids()])
+        ts = set([bd.bug_from_uuid(bug).target for bug in bd.uuids()])
         for target in sorted(ts):
             if target and isinstance(target,str):
                 print target
index 675b7446442c214a6b2fe5a176b9bafaeea5a882..3d077544cda75e19a4668187a1a586831774c4ce 100644 (file)
@@ -239,7 +239,7 @@ settings easy.  Don't set this attribute.  Set .vcs instead, and
         map = {}
         for bug in self:
             map[bug.uuid] = bug
-        for uuid in self.list_uuids():
+        for uuid in self.uuids():
             if uuid not in map:
                 map[uuid] = None
         self._bug_map_value = map # ._bug_map_value used by @local_property
@@ -483,7 +483,7 @@ settings easy.  Don't set this attribute.  Set .vcs instead, and
         if self.sync_with_disk == False:
             raise DiskAccessRequired("load all bugs")
         self._clear_bugs()
-        for uuid in self.list_uuids():
+        for uuid in self.uuids():
             self._load_bug(uuid)
 
     def save(self):
@@ -550,7 +550,7 @@ settings easy.  Don't set this attribute.  Set .vcs instead, and
 
     # methods for managing bugs
 
-    def list_uuids(self):
+    def uuids(self):
         uuids = []
         if self.sync_with_disk == True and os.path.exists(self.get_path()):
             # list the uuids on disk
@@ -651,7 +651,7 @@ class SimpleBugDir (BugDir):
     """
     For testing.  Set sync_with_disk==False for a memory-only bugdir.
     >>> bugdir = SimpleBugDir()
-    >>> uuids = list(bugdir.list_uuids())
+    >>> uuids = list(bugdir.uuids())
     >>> uuids.sort()
     >>> print uuids
     ['a', 'b']
@@ -741,7 +741,7 @@ class BugDirTestCase(unittest.TestCase):
         self.bugdir.new_bug(uuid="c", summary="Praying mantis")
         length = len(self.bugdir)
         self.failUnless(length == 3, "%d != 3 bugs" % length)
-        uuids = list(self.bugdir.list_uuids())
+        uuids = list(self.bugdir.uuids())
         self.failUnless(len(uuids) == 3, "%d != 3 uuids" % len(uuids))
         self.failUnless(uuids == ["a","b","c"], str(uuids))
         bugA = self.bugdir.bug_from_uuid("a")
index cce3b0fc3af1e717e83e256559f5d59958953bd4..6e830c67ed51610c64cabd80122bb36a98b6fba7 100644 (file)
@@ -207,7 +207,7 @@ class Diff (object):
         added = []
         removed = []
         modified = []
-        for uuid in self.new_bugdir.list_uuids():
+        for uuid in self.new_bugdir.uuids():
             new_bug = self.new_bugdir.bug_from_uuid(uuid)
             try:
                 old_bug = self.old_bugdir.bug_from_uuid(uuid)
@@ -220,7 +220,7 @@ class Diff (object):
                     new_bug.load_comments()
                 if old_bug != new_bug:
                     modified.append((old_bug, new_bug))
-        for uuid in self.old_bugdir.list_uuids():
+        for uuid in self.old_bugdir.uuids():
             if not self.new_bugdir.has_bug(uuid):
                 old_bug = self.old_bugdir.bug_from_uuid(uuid)
                 removed.append(old_bug)