diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-17 19:01:15 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-17 19:01:15 +0000 |
commit | 63d507adccf8207a40e2b22a8c11f79efb83f56a (patch) | |
tree | 079ea1f80004c18837a93f3bdc66b039d8d5127a /setuptools/tests/test_resources.py | |
parent | 30f1c5ad93e21ec007d371313e2a27e4d0efb661 (diff) | |
download | external_python_setuptools-63d507adccf8207a40e2b22a8c11f79efb83f56a.tar.gz external_python_setuptools-63d507adccf8207a40e2b22a8c11f79efb83f56a.tar.bz2 external_python_setuptools-63d507adccf8207a40e2b22a8c11f79efb83f56a.zip |
``Distribution`` objects now implement the ``IResourceProvider`` and
``IMetadataProvider`` interfaces, so you don't need to reference the (no
longer available) ``metadata`` attribute to get at these interfaces.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041133
Diffstat (limited to 'setuptools/tests/test_resources.py')
-rw-r--r-- | setuptools/tests/test_resources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_resources.py b/setuptools/tests/test_resources.py index 10786144..0a4cb183 100644 --- a/setuptools/tests/test_resources.py +++ b/setuptools/tests/test_resources.py @@ -3,7 +3,7 @@ from pkg_resources import * import pkg_resources, sys from sets import ImmutableSet -class Metadata: +class Metadata(EmptyProvider): """Mock object to return metadata as if from an on-disk distribution""" def __init__(self,*pairs): |