Lines Matching refs:fullname
62 def find_module(self, fullname, path=None):
64 The fullname is a str and the optional path is a str or None.
82 def find_module(self, fullname, path):
85 If no module is found, return None. The fullname is a str and
100 found = self.find_spec(fullname, path)
119 def find_loader(self, fullname):
122 The fullname is a str. The namespace portion is a sequence of
141 found = self.find_spec(fullname)
186 def is_package(self, fullname):
188 module is a package. The fullname is a str. Returns a bool.
194 def get_code(self, fullname):
197 The fullname is a str. Returns a types.CodeType if possible, else
202 source = self.get_source(fullname)
208 def get_source(self, fullname):
210 module. The fullname is a str. Returns a str.
240 def get_filename(self, fullname):
248 def get_code(self, fullname):
249 """Method to return the code object for fullname.
254 source = self.get_source(fullname)
258 path = self.get_filename(fullname)