~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Martin Pool
  • Date: 2005-07-18 11:37:33 UTC
  • Revision ID: mbp@sourcefrog.net-20050718113733-39beb81b0e1ead4d
- don't intern weave text; it doesn't seem to help

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
        if l == 'W\n':
126
126
            break
127
127
        elif l.startswith('. '):
128
 
            w._l.append(intern(l[2:]))  # include newline
 
128
            w._l.append(l[2:])  # include newline
129
129
        elif l.startswith(', '):
130
130
            w._l.append(l[2:-1])        # exclude newline
131
131
        else: