/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Vincent Ladeuil
  • Date: 2009-06-11 06:49:21 UTC
  • mto: (4452.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4453.
  • Revision ID: v.ladeuil+lp@free.fr-20090611064921-on9wxymrzgkxi2a0
Start implementing jam's review feedback.

* bzrlib/tests/blackbox/test_push.py:
(TestPushStrict): Refactor and some tests.

* bzrlib/config.py:
(TreeConfig.get_option): Delete dead code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
930
930
            return self._config.get_option(name, section, default)
931
931
        finally:
932
932
            self.branch.unlock()
933
 
        return result
934
933
 
935
934
    def set_option(self, value, name, section=None):
936
935
        """Set a per-branch configuration option"""