/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/tests/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-10-29 22:00:43 UTC
  • mfrom: (4776.1.1 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20091029220043-u2qbo0ci5867xniz
(jam) Merge lp:bzr/2.0 4696 into lp:bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
from bzrlib import (
54
54
    branchbuilder,
55
55
    bzrdir,
 
56
    chk_map,
56
57
    config,
57
58
    debug,
58
59
    errors,
1790
1791
 
1791
1792
    def _run_bzr_core(self, args, retcode, encoding, stdin,
1792
1793
            working_dir):
 
1794
        # Clear chk_map page cache, because the contents are likely to mask
 
1795
        # locking errors.
 
1796
        chk_map.clear_cache()
1793
1797
        if encoding is None:
1794
1798
            encoding = osutils.get_user_encoding()
1795
1799
        stdout = StringIOWrapper()