Rev 3839: Restore the XMLSerializer caching hack. in http://bzr.arbash-meinel.com/branches/bzr/brisbane/hack
John Arbash Meinel
john at arbash-meinel.com
Wed Feb 25 19:33:08 GMT 2009
At http://bzr.arbash-meinel.com/branches/bzr/brisbane/hack
------------------------------------------------------------
revno: 3839
revision-id: john at arbash-meinel.com-20090225193302-2xi3vva1tgpb2p4k
parent: v.ladeuil+lp at free.fr-20090225171530-csepqpytpkb0vb84
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: hack
timestamp: Wed 2009-02-25 13:33:02 -0600
message:
Restore the XMLSerializer caching hack.
-------------- next part --------------
=== modified file 'bzrlib/xml8.py'
--- a/bzrlib/xml8.py 2009-01-17 01:30:58 +0000
+++ b/bzrlib/xml8.py 2009-02-25 19:33:02 +0000
@@ -428,10 +428,10 @@
pass
else:
# Only copying directory entries drops us 2.85s => 2.35s
- # if cached_ie.kind == 'directory':
- # return cached_ie.copy()
- # return cached_ie
- return cached_ie.copy()
+ if cached_ie.kind == 'directory':
+ return cached_ie.copy()
+ return cached_ie
+ # return cached_ie.copy()
kind = elt.tag
if not InventoryEntry.versionable_kind(kind):
More information about the bazaar-commits
mailing list