diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-07-05 12:42:24 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-07-05 12:42:24 -0400 |
commit | 3c936c87351d12ed57a09cf42454aadae155cb46 (patch) | |
tree | b3565bef7f05e0493088d214febea86f7f795352 | |
parent | 243d54273d0308693f0181443fbc95197ffd4019 (diff) | |
download | external_python_setuptools-3c936c87351d12ed57a09cf42454aadae155cb46.tar.gz external_python_setuptools-3c936c87351d12ed57a09cf42454aadae155cb46.tar.bz2 external_python_setuptools-3c936c87351d12ed57a09cf42454aadae155cb46.zip |
Remove commented code
--HG--
extra : histedit_source : 7600ecd3914abc4767d4296f62b038a6397df673
-rw-r--r-- | pkg_resources.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pkg_resources.py b/pkg_resources.py index 470143dd..b544fed4 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -311,11 +311,6 @@ def compatible_platforms(provided, required): macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2)) if dversion == 7 and macosversion >= "10.3" or \ dversion == 8 and macosversion >= "10.4": - - #import warnings - #warnings.warn("Mac eggs should be rebuilt to " - # "use the macosx designation instead of darwin.", - # category=DeprecationWarning) return True return False # egg isn't macosx or legacy darwin |