summaryrefslogtreecommitdiff
path: root/pkg_resources.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-12-08 10:00:57 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-12-08 10:00:57 -0500
commit706797871041656997c422c76db0e834c9aa6b55 (patch)
tree068cd820312fba917baf13c81b5bb49d25c89f17 /pkg_resources.py
parent6dd1517317b3457df2370ac8bd9e0d070251e2bf (diff)
downloadpython-setuptools-git-706797871041656997c422c76db0e834c9aa6b55.tar.gz
Remove _marker_names (unused)
Diffstat (limited to 'pkg_resources.py')
-rw-r--r--pkg_resources.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkg_resources.py b/pkg_resources.py
index cf81e752..31411d22 100644
--- a/pkg_resources.py
+++ b/pkg_resources.py
@@ -1103,12 +1103,6 @@ def to_filename(name):
"""
return name.replace('-','_')
-_marker_names = {
- 'os': ['name'], 'sys': ['platform'],
- 'platform': ['version','machine','python_implementation'],
- 'python_version': [], 'python_full_version': [], 'extra':[],
-}
-
_marker_values = {
'os_name': lambda: os.name,
'sys_platform': lambda: sys.platform,