03-arcadia.patch 412 B

123456789101112
  1. --- contrib/python/setuptools/py3/pkg_resources/__init__.py (index)
  2. +++ contrib/python/setuptools/py3/pkg_resources/__init__.py (working tree)
  3. @@ -3330,6 +3330,9 @@ class UnionProvider(EmptyProvider):
  4. return False
  5. + def get_resource_filename(self, manager, resource_name):
  6. + return self._fn(self.module_path, resource_name)[0][1]
  7. +
  8. class ResProvider(EmptyProvider):
  9. _resource_fs = {}