Rev 5024: (jam)(trivial) Fix bug #304182 by adding a simple docstring. in file:///home/pqm/archives/thelove/bzr/%2Btrunk/

Canonical.com Patch Queue Manager pqm at pqm.ubuntu.com
Wed Feb 10 22:24:09 GMT 2010


At file:///home/pqm/archives/thelove/bzr/%2Btrunk/

------------------------------------------------------------
revno: 5024 [merge]
revision-id: pqm at pqm.ubuntu.com-20100210222403-ie0c64ofqz81pq2n
parent: pqm at pqm.ubuntu.com-20100210192057-uvi7tmdubcvh9xpo
parent: john at arbash-meinel.com-20100210213632-cb6oxouuiyl91rju
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: +trunk
timestamp: Wed 2010-02-10 22:24:03 +0000
message:
  (jam)(trivial) Fix bug #304182 by adding a simple docstring.
modified:
  NEWS                           NEWS-20050323055033-4e00b5db738777ff
  bzrlib/tree.py                 tree.py-20050309040759-9d5f2496be663e77
=== modified file 'NEWS'
--- a/NEWS	2010-02-10 19:20:57 +0000
+++ b/NEWS	2010-02-10 22:24:03 +0000
@@ -33,6 +33,9 @@
 Bug Fixes
 *********
 
+* Added docstring for ``Tree.iter_changes``
+  (John Arbash Meinel, #304182)
+
 * Allow exporting a single file using ``bzr export``.
   (Michal Junák, #511987)
 

=== modified file 'bzrlib/tree.py'
--- a/bzrlib/tree.py	2009-11-27 23:21:36 +0000
+++ b/bzrlib/tree.py	2010-02-10 21:36:32 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 2005, 2009 Canonical Ltd
+# Copyright (C) 2005-2010 Canonical Ltd
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -98,6 +98,7 @@
     def iter_changes(self, from_tree, include_unchanged=False,
                      specific_files=None, pb=None, extra_trees=None,
                      require_versioned=True, want_unversioned=False):
+        """See InterTree.iter_changes"""
         intertree = InterTree.get(from_tree, self)
         return intertree.iter_changes(include_unchanged, specific_files, pb,
             extra_trees, require_versioned, want_unversioned=want_unversioned)




More information about the bazaar-commits mailing list