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

------------------------------------------------------------
revno: 5024 [merge]
revision-id: [email protected]
parent: [email protected]
parent: [email protected]
committer: Canonical.com Patch Queue Manager <[email protected]>
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)


-- 
bazaar-commits mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/bazaar-commits

Reply via email to