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)