diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-11-26 18:59:35 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-11-26 18:59:35 +0000 |
| commit | 54f4c8f77365dc6a6a6cb1edf472a58e3c802789 (patch) | |
| tree | 80c747c6f9939f08ac11040b371710b560eef2d3 | |
| parent | 016ae6c42a868bc36c950cd3dc04e75b6ecce7dc (diff) | |
| download | python-setuptools-git-54f4c8f77365dc6a6a6cb1edf472a58e3c802789.tar.gz | |
If more than one URL appears to describe the exact same distribution, prefer
the shortest one. This helps to avoid "table of contents" CGI URLs like the
ones on effbot.org.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041550
| -rwxr-xr-x | EasyInstall.txt | 4 | ||||
| -rw-r--r-- | pkg_resources.py | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index 327d63c6..0d98e7c1 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -870,6 +870,10 @@ Known Issues * Fixed ``.pth`` file processing picking up nested eggs (i.e. ones inside "baskets") when they weren't explicitly listed in the ``.pth`` file. + * If more than one URL appears to describe the exact same distribution, prefer + the shortest one. This helps to avoid "table of contents" CGI URLs like the + ones on effbot.org. + 0.6a8 * Update for changed SourceForge mirror format diff --git a/pkg_resources.py b/pkg_resources.py index 4cf262b7..371ef20d 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -1754,7 +1754,7 @@ class Distribution(object): hashcmp = property( lambda self: ( getattr(self,'parsed_version',()), self.precedence, self.key, - self.location, self.py_version, self.platform + -len(self.location), self.location, self.py_version, self.platform ) ) def __cmp__(self, other): return cmp(self.hashcmp, other) |
