Lines Matching refs:find_spec
70 "MetaPathFinder.find_spec() or "
71 "PathEntryFinder.find_spec() instead",
79 # We don't define find_spec() here since that would break
89 finder.find_spec(). If find_spec() exists then backwards-compatible
94 "3.4 in favor of MetaPathFinder.find_spec() and is "
98 if not hasattr(self, 'find_spec'):
100 found = self.find_spec(fullname, path)
116 # We don't define find_spec() here since that would break
131 finder.find_spec(). If find_spec() is provided than backwards-compatible
135 "3.4 in favor of PathEntryFinder.find_spec() "
139 if not hasattr(self, 'find_spec'):
141 found = self.find_spec(fullname)