diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-05 14:21:41 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-05 14:21:41 -0500 |
commit | 92a553d3adeb431cdf92b136ac9ccc3f2ef98bf1 (patch) | |
tree | 5fc6312e181a4dea87a02e700b49c065283c7f9a /setuptools/tests | |
parent | 7fa87f2fbdf84d414e069ca96f6c6d860d7e0505 (diff) | |
download | python-setuptools-git-11.3.tar.gz |
Add EntryPoint.resolve and deprecate most usage of EntryPoint.load. Removed EntryPoint._load.11.3
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/test_sdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_sdist.py b/setuptools/tests/test_sdist.py index d3494d7a..9013b505 100644 --- a/setuptools/tests/test_sdist.py +++ b/setuptools/tests/test_sdist.py @@ -415,5 +415,5 @@ def test_default_revctrl(): """ ep_def = 'svn_cvs = setuptools.command.sdist:_default_revctrl' ep = pkg_resources.EntryPoint.parse(ep_def) - res = ep._load() + res = ep.resolve() assert hasattr(res, '__iter__') |