~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

(jam) Switch from Transport.get() to .get_bytes(),
        close open file handles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
Internals
78
78
*********
79
79
 
 
80
* Several code paths that were calling ``Transport.get().read()`` have
 
81
  been changed to the equalivent ``Transport.get_bytes()``. The main
 
82
  difference is that the latter will explicitly call ``file.close()``,
 
83
  rather than expecting the garbage collector to handle it. This helps
 
84
  with some race conditions on Windows during the test suite and sftp
 
85
  tests. (John Arbash Meinel)
 
86
 
80
87
Testing
81
88
*******
82
89