Home | History | Annotate | Download | only in python2.7

Lines Matching refs:mname

196         for mname in self.ok_builtin_modules:
197 if mname in sys.builtin_module_names:
198 list.append(mname)
235 def is_builtin(self, mname):
236 return mname in self.ok_builtin_modules
298 def add_module(self, mname):
299 m = self.modules.get(mname)
301 self.modules[mname] = m = self.hooks.new_module(mname)
338 def r_import(self, mname, globals={}, locals={}, fromlist=[]):
347 return self.importer.import_module(mname, globals, locals, fromlist)