~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2009-12-13 05:28:03 UTC
  • mto: This revision was merged to the branch mainline in revision 4920.
  • Revision ID: robertc@robertcollins.net-20091213052803-naih51i2khxktgqu
Create a StreamWriter helper that doesn't trigger implicit decode('ascii') on write(a_str).

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
Internals
56
56
*********
57
57
 
 
58
* New helper osutils.StreamWriter which encodes unicode objects but 
 
59
  passes str objects straight through. This is used for selftest but
 
60
  may be useful for diff and other operations that generate mixed output.
 
61
  (Robert Collins)
 
62
 
58
63
Testing
59
64
*******
60
65
 
61
66
* ``bzrlib.tests.TestCase`` now subclasses ``testtools.testcase.TestCase``.
62
67
  This permits features in testtools such as getUniqueInteger and
63
 
  getUniqueString to be used. (Robert Collins)
 
68
  getUniqueString to be used. Because of this, testtools version 0.9.2 or
 
69
  newer is now a dependency to run bzr selftest. (Robert Collins)
64
70
 
65
71
* -Dhpssvfs will now trigger on ``RemoteBzrDir._ensure_real``, providing
66
72
  more debugging of VFS access triggers. (Robert Collins)