diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-02-07 15:46:47 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-02-07 15:46:47 -0500 |
commit | a53e424061f4765df93caeab8627da87968299d9 (patch) | |
tree | 8f9ab465ff4996debc317d252bff4b1f71ab3699 /coverage/templite.py | |
parent | 00dee2596878616155878e462e831bf92917cecc (diff) | |
download | python-coveragepy-git-a53e424061f4765df93caeab8627da87968299d9.tar.gz |
You know that thing they say about how ''.join(slist) is faster than s1 += s? It's really true. This one change removed 90% of the templite time, and 59% of the html report generation time.
Diffstat (limited to 'coverage/templite.py')
-rw-r--r-- | coverage/templite.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/templite.py b/coverage/templite.py index d3c673c6..66f38a9c 100644 --- a/coverage/templite.py +++ b/coverage/templite.py @@ -101,14 +101,14 @@ class Templite(object): # Run it through an engine, and return the result. engine = _TempliteEngine(ctx) engine.execute(self.ops) - return engine.result + return "".join(engine.result) class _TempliteEngine(object): """Executes Templite objects to produce strings.""" def __init__(self, context): self.context = context - self.result = "" + self.result = [] def execute(self, ops): """Execute `ops` in the engine. |