[Pkg-bazaar-commits] ./bzr/unstable r940: - don't intern weave text; it doesn't seem to help

Martin Pool mbp at sourcefrog.net
Fri Apr 10 08:21:31 UTC 2009


------------------------------------------------------------
revno: 940
committer: Martin Pool <mbp at sourcefrog.net>
timestamp: Mon 2005-07-18 08:37:33 -0300
message:
  - don't intern weave text; it doesn't seem to help
modified:
  bzrlib/weavefile.py
-------------- next part --------------
=== modified file 'bzrlib/weavefile.py'
--- a/bzrlib/weavefile.py	2005-07-18 11:36:41 +0000
+++ b/bzrlib/weavefile.py	2005-07-18 11:37:33 +0000
@@ -125,7 +125,7 @@
         if l == 'W\n':
             break
         elif l.startswith('. '):
-            w._l.append(intern(l[2:]))  # include newline
+            w._l.append(l[2:])  # include newline
         elif l.startswith(', '):
             w._l.append(l[2:-1])        # exclude newline
         else:



More information about the Pkg-bazaar-commits mailing list