summaryrefslogtreecommitdiff
path: root/pkg_resources.py
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2005-11-26 18:59:35 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2005-11-26 18:59:35 +0000
commit75533464d7e5e046ce4e9d9a5b73dd111fbb7d99 (patch)
tree80c747c6f9939f08ac11040b371710b560eef2d3 /pkg_resources.py
parent15a14f4472d460be7db5034ba423af3e725329e5 (diff)
downloadpython-setuptools-75533464d7e5e046ce4e9d9a5b73dd111fbb7d99.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. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@41550 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'pkg_resources.py')
-rw-r--r--pkg_resources.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources.py b/pkg_resources.py
index 4cf262b..371ef20 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)