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/command/test.py | |
parent | 7fa87f2fbdf84d414e069ca96f6c6d860d7e0505 (diff) | |
download | external_python_setuptools-92a553d3adeb431cdf92b136ac9ccc3f2ef98bf1.tar.gz external_python_setuptools-92a553d3adeb431cdf92b136ac9ccc3f2ef98bf1.tar.bz2 external_python_setuptools-92a553d3adeb431cdf92b136ac9ccc3f2ef98bf1.zip |
Add EntryPoint.resolve and deprecate most usage of EntryPoint.load. Removed EntryPoint._load.11.3
Diffstat (limited to 'setuptools/command/test.py')
-rw-r--r-- | setuptools/command/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/test.py b/setuptools/command/test.py index 2bf5cb16..42689f70 100644 --- a/setuptools/command/test.py +++ b/setuptools/command/test.py @@ -172,4 +172,4 @@ class test(Command): if val is None: return parsed = EntryPoint.parse("x=" + val) - return parsed._load()() + return parsed.resolve()() |