[Lxml-checkins] r32530 - in lxml/branch/lxml-1.1: . benchmark doc
scoder at codespeak.net
scoder at codespeak.net
Wed Sep 20 16:56:07 CEST 2006
Author: scoder
Date: Wed Sep 20 16:56:06 2006
New Revision: 32530
Modified:
lxml/branch/lxml-1.1/MANIFEST.in
lxml/branch/lxml-1.1/benchmark/benchbase.py
lxml/branch/lxml-1.1/doc/performance.txt
Log:
merge from trunk: benchmark cleanup
Modified: lxml/branch/lxml-1.1/MANIFEST.in
==============================================================================
--- lxml/branch/lxml-1.1/MANIFEST.in (original)
+++ lxml/branch/lxml-1.1/MANIFEST.in Wed Sep 20 16:56:06 2006
@@ -1,5 +1,5 @@
exclude *.py
-include setup.py test.py selftest.py selftest2.py bench.py
+include setup.py test.py selftest.py selftest2.py
include update-error-constants.py
include MANIFEST.in version.txt
include CHANGES.txt CREDITS.txt INSTALL.txt LICENSES.txt README.txt TODO.txt
Modified: lxml/branch/lxml-1.1/benchmark/benchbase.py
==============================================================================
--- lxml/branch/lxml-1.1/benchmark/benchbase.py (original)
+++ lxml/branch/lxml-1.1/benchmark/benchbase.py Wed Sep 20 16:56:06 2006
@@ -6,8 +6,8 @@
TREE_FACTOR = 1 # increase tree size with '-l / '-L' cmd option
-TEXT = "some ASCII text" * TREE_FACTOR
-UTEXT = u"some klingon: \F8D2" * TREE_FACTOR
+_TEXT = "some ASCII text" * TREE_FACTOR
+_UTEXT = u"some klingon: \F8D2" * TREE_FACTOR
_ATTRIBUTES = {
'{attr}test1' : _TEXT,
'{attr}test2' : _TEXT,
Modified: lxml/branch/lxml-1.1/doc/performance.txt
==============================================================================
--- lxml/branch/lxml-1.1/doc/performance.txt (original)
+++ lxml/branch/lxml-1.1/doc/performance.txt Wed Sep 20 16:56:06 2006
@@ -19,7 +19,7 @@
1.0 (with libxml2 2.6.24), ElementTree 1.2.6 and cElementTree 1.0.5 under
CPython 2.4.2 on a 1.6GHz AMD64 machine.
-.. _`bench.py`: http://codespeak.net/svn/lxml/trunk/bench.py
+.. _`bench.py`: http://codespeak.net/svn/lxml/branch/lxml-1.0/bench.py
The ``bench.py`` script runs a number of simple tests on the different
libraries, using different XML tree configurations: different tree sizes, with
More information about the lxml-checkins
mailing list