aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools.txt
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-08-06 02:30:52 +0000
committerPJ Eby <distutils-sig@python.org>2005-08-06 02:30:52 +0000
commit34e9acb9b0572b1f0503ee9e56439b768e575e83 (patch)
treeaeb731ec04d726e270432ee5dd40a69a4676c375 /setuptools.txt
parentc9c1087c11cf7c487b85b599071bedbbcdbbc6d1 (diff)
downloadexternal_python_setuptools-34e9acb9b0572b1f0503ee9e56439b768e575e83.tar.gz
external_python_setuptools-34e9acb9b0572b1f0503ee9e56439b768e575e83.tar.bz2
external_python_setuptools-34e9acb9b0572b1f0503ee9e56439b768e575e83.zip
Performance boosts: don't create environment during require()/resolve()
if all requirements can be met with items already in the working set. Don't eagerly determine whether a path is a directory. Avoid redundant path operations, etc. These changes dropped the test suite runtime from over 3.4 seconds to around .34 seconds. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041176
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-xsetuptools.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools.txt b/setuptools.txt
index b9911703..1c466d06 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -1597,6 +1597,10 @@ Release Notes/Change History
containing ``setup.py``, not the highest revision number in the project.
* Added ``eager_resources`` setup argument
+
+ * Enhanced performance of ``require()`` and related operations when all
+ requirements are already in the working set, and enhanced performance of
+ directory scanning for distributions.
* Fixed some problems using ``pkg_resources`` w/PEP 302 loaders other than
``zipimport``, and the previously-broken "eager resource" support.