(self, libname)
| 797 | self._ld_so_cache = cache |
| 798 | |
| 799 | def getplatformpaths(self, libname): |
| 800 | if self._ld_so_cache is None: |
| 801 | self._create_ld_so_cache() |
| 802 | |
| 803 | result = self._ld_so_cache.get(libname, set()) |
| 804 | for i in result: |
| 805 | # we iterate through all found paths for library, since we may have |
| 806 | # actually found multiple architectures or other library types that |
| 807 | # may not load |
| 808 | yield i |
| 809 | |
| 810 | |
| 811 | # Windows |
nothing calls this directly
no test coverage detected