~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-04 18:04:41 UTC
  • mfrom: (3688.1.2 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080904180441-gssfmn0j6yw2vi0e
(jam) Use list.append(str) instead of list += str when buffering sftp
        reads.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
      to recover if you realize you uncommitted the wrong thing.
40
40
      (John Arbash Meinel)
41
41
 
 
42
    * ``SFTPTransport.readv()`` was accidentally using ``list += string``,
 
43
      which 'works', but adds each character separately to the list,
 
44
      rather than using ``list.append(string)``. Fixing this makes the
 
45
      SFTP transport a little bit faster (~20%) and use a bit less memory.
 
46
      (John Arbash Meinel)
 
47
 
42
48
    * When reading index files, if we happen to read the whole file in a
43
49
      single request treat it as a ``_buffer_all`` request. This happens
44
50
      most often on small indexes over remote transports, where we default