Lines Matching refs:find_spec
749 def find_spec(cls, fullname, path=None, target=None):
761 This method is deprecated. Use find_spec() instead.
765 "slated for removal in Python 3.12; use find_spec() instead",
767 spec = cls.find_spec(fullname, path)
921 def find_spec(cls, fullname, path=None, target=None):
954 This method is deprecated. Use find_spec() instead.
958 "slated for removal in Python 3.12; use find_spec() instead",
1045 msg = (f"{_object_name(finder)}.find_spec() not found; "
1072 find_spec = finder.find_spec
1078 spec = find_spec(name, path, target)
1309 spec = BuiltinImporter.find_spec(name)