/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: John Arbash Meinel
  • Date: 2009-10-29 21:13:16 UTC
  • mfrom: (4634.77.13 2.0)
  • mto: This revision was merged to the branch mainline in revision 4777.
  • Revision ID: john@arbash-meinel.com-20091029211316-d70fv1sxe2ev9rhy
Merge bzr.2.0 bringing in a bunch of small bugfixes.

Stuff like the ObjectNotLocked failures, reverting contents in the presence
of filters, etc.

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()