Python imp.C_BUILTIN Examples
The following are 30
code examples of imp.C_BUILTIN().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
imp
, or try the search function
.
Example #1
Source File: modulefinder.py From Splunking-Crime with GNU Affero General Public License v3.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #2
Source File: modulefinder.py From canape with GNU General Public License v3.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #3
Source File: modulefinder.py From android_universal with MIT License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError(name) if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #4
Source File: modulefinder.py From unity-python with MIT License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #5
Source File: modulefinder.py From PokemonGo-DesktopMap with MIT License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #6
Source File: modulefinder.py From Carnets with BSD 3-Clause "New" or "Revised" License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError(name) if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #7
Source File: modulefinder.py From RevitBatchProcessor with GNU General Public License v3.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #8
Source File: modulefinder.py From odoo13-x64 with GNU General Public License v3.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError(name) if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #9
Source File: modulefinder.py From medicare-demo with Apache License 2.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #10
Source File: modulefinder.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError(name) if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #11
Source File: modulefinder.py From datafari with Apache License 2.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #12
Source File: modulefinder.py From ironpython3 with Apache License 2.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError(name) if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #13
Source File: mf27.py From pydeps with BSD 2-Clause "Simplified" License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__ + '.' + name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError(name) if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #14
Source File: modulefinder.py From meddle with MIT License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #15
Source File: modulefinder.py From ironpython2 with Apache License 2.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #16
Source File: modulefinder.py From BinderFilter with MIT License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #17
Source File: modulefinder.py From Computable with MIT License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #18
Source File: modulefinder.py From oss-ftp with MIT License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError, name if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #19
Source File: modulefinder.py From Imogen with MIT License | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError(name) if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #20
Source File: modulefinder.py From Fluid-Designer with GNU General Public License v3.0 | 6 votes |
def find_module(self, name, path, parent=None): if parent is not None: # assert path is not None fullname = parent.__name__+'.'+name else: fullname = name if fullname in self.excludes: self.msgout(3, "find_module -> Excluded", fullname) raise ImportError(name) if path is None: if name in sys.builtin_module_names: return (None, None, ("", "", imp.C_BUILTIN)) path = self.path return imp.find_module(name, path)
Example #21
Source File: handler.py From iopipe-python with Apache License 2.0 | 5 votes |
def get_handler(): if "IOPIPE_HANDLER" not in os.environ or not os.environ["IOPIPE_HANDLER"]: raise ValueError("No value specified in IOPIPE_HANDLER environment variable") try: module_path, handler_name = os.environ["IOPIPE_HANDLER"].rsplit(".", 1) except ValueError: raise ValueError( "Improperly formated handler value: %s" % os.environ["IOPIPE_HANDLER"] ) module_path = module_path.replace("/", ".") file_handle, pathname, desc = None, None, None try: for segment in module_path.split("."): if pathname is not None: pathname = [pathname] file_handle, pathname, desc = imp.find_module(segment, pathname) if file_handle is None: module_type = desc[2] if module_type == imp.C_BUILTIN: raise ImportError( "Cannot use built-in module %s as a handler module" % module_path ) module = imp.load_module(module_path, file_handle, pathname, desc) except Exception as e: raise ImportError("Failed to import module: %s" % module_path) finally: if file_handle is not None: file_handle.close() try: handler = getattr(module, handler_name) except AttributeError as e: raise AttributeError("No handler %s in module %s" % (handler_name, module_path)) return handler
Example #22
Source File: sandbox_test.py From python-compat-runtime with Apache License 2.0 | 5 votes |
def test_c_builtin(self): imp.find_module('bar', ['foo']).AndReturn((None, 'bar', (None, None, imp.C_BUILTIN))) self.mox.ReplayAll() self.assertIsNone(self.hook.find_module('foo.bar', ['foo']))
Example #23
Source File: bootstrap.py From knative-lambda-runtime with Apache License 2.0 | 5 votes |
def _get_handler(handler): try: (modname, fname) = handler.rsplit('.', 1) except ValueError as e: fault = FaultException("Bad handler '{}'".format(handler), str(e), None) request_handler = make_fault_handler(fault) return request_handler file_handle, pathname, desc = None, None, None try: # Recursively loading handler in nested directories for segment in modname.split('.'): if pathname is not None: pathname = [pathname] file_handle, pathname, desc = imp.find_module(segment, pathname) if file_handle is None: module_type = desc[2] if module_type == imp.C_BUILTIN: fault = FaultException("Cannot use built-in module {} as a handler module".format(modname), None, None) request_handler = make_fault_handler(fault) return request_handler m = imp.load_module(modname, file_handle, pathname, desc) except ImportError as e: fault = FaultException("Unable to import module '{}'".format(modname), str(e), None) request_handler = make_fault_handler(fault) return request_handler except SyntaxError as e: trace = "File \"%s\" Line %s\n\t%s" % (e.filename, e.lineno, e.text) fault = FaultException("Syntax error in module '{}'".format(modname), str(e), trace) request_handler = make_fault_handler(fault) return request_handler finally: if file_handle is not None: file_handle.close() try: request_handler = getattr(m, fname) except AttributeError as e: fault = FaultException("Handler '{}' missing on module '{}'".format(fname, modname), str(e), None) request_handler = make_fault_handler(fault) return request_handler
Example #24
Source File: bootstrap.py From knative-lambda-runtime with Apache License 2.0 | 5 votes |
def _get_handler(handler): try: (modname, fname) = handler.rsplit('.', 1) except ValueError as e: fault = FaultException("Bad handler '{}'".format(handler), str(e), None) request_handler = make_fault_handler(fault) return request_handler file_handle, pathname, desc = None, None, None try: # Recursively loading handler in nested directories for segment in modname.split('.'): if pathname is not None: pathname = [pathname] file_handle, pathname, desc = imp.find_module(segment, pathname) if file_handle is None: module_type = desc[2] if module_type == imp.C_BUILTIN: fault = FaultException("Cannot use built-in module {} as a handler module".format(modname), None, None) request_handler = make_fault_handler(fault) return request_handler m = imp.load_module(modname, file_handle, pathname, desc) except ImportError as e: fault = FaultException("Unable to import module '{}'".format(modname), str(e), None) request_handler = make_fault_handler(fault) return request_handler except SyntaxError as e: trace = "File \"%s\" Line %s\n\t%s" % (e.filename, e.lineno, e.text) fault = FaultException("Syntax error in module '{}'".format(modname), str(e), trace) request_handler = make_fault_handler(fault) return request_handler finally: if file_handle is not None: file_handle.close() try: request_handler = getattr(m, fname) except AttributeError as e: fault = FaultException("Handler '{}' missing on module '{}'".format(fname, modname), str(e), None) request_handler = make_fault_handler(fault) return request_handler
Example #25
Source File: ImportManager.py From moviegrabber with GNU General Public License v3.0 | 5 votes |
def getmod(self, nm, isbuiltin=imp.is_builtin): if isbuiltin(nm): mod = imp.load_module(nm, None, nm, ('', '', imp.C_BUILTIN)) return mod return None
Example #26
Source File: sandbox.py From python-compat-runtime with Apache License 2.0 | 5 votes |
def find_module(self, fullname, path=None): if (fullname in _WHITE_LIST_C_MODULES or any(regex.match(fullname) for regex in self._enabled_regexes)): return None if self._module_type(fullname, path) in [imp.C_EXTENSION, imp.C_BUILTIN]: return self return None
Example #27
Source File: sandbox_test.py From browserscope with Apache License 2.0 | 5 votes |
def test_c_builtin(self): imp.find_module('bar', ['foo']).AndReturn((None, 'bar', (None, None, imp.C_BUILTIN))) self.mox.ReplayAll() self.assertIsNone(self.hook.find_module('foo.bar', ['foo']))
Example #28
Source File: test_imp.py From ironpython2 with Apache License 2.0 | 5 votes |
def test_flags(self): self.assertEqual(imp.SEARCH_ERROR,0) self.assertEqual(imp.PY_SOURCE,1) self.assertEqual(imp.PY_COMPILED,2) self.assertEqual(imp.C_EXTENSION,3) self.assertEqual(imp.PY_RESOURCE,4) self.assertEqual(imp.PKG_DIRECTORY,5) self.assertEqual(imp.C_BUILTIN,6) self.assertEqual(imp.PY_FROZEN,7) self.assertEqual(imp.PY_CODERESOURCE,8)
Example #29
Source File: modutils.py From clonedigger with GNU General Public License v3.0 | 5 votes |
def _file_from_modpath(modpath, path=None, context=None): """given a mod path (ie splited module / package name), return the corresponding file this function is used internally, see `file_from_modpath`'s documentation for more information """ assert len(modpath) > 0 if context is not None: try: mtype, mp_filename = _module_file(modpath, [context]) except ImportError: mtype, mp_filename = _module_file(modpath, path) else: mtype, mp_filename = _module_file(modpath, path) if mtype == PY_COMPILED: try: return get_source_file(mp_filename) except NoSourceFile: return mp_filename elif mtype == C_BUILTIN: # integrated builtin module return None elif mtype == PKG_DIRECTORY: mp_filename = _has_init(mp_filename) return mp_filename
Example #30
Source File: test_imp.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_flags(self): self.assertEqual(imp.SEARCH_ERROR,0) self.assertEqual(imp.PY_SOURCE,1) self.assertEqual(imp.PY_COMPILED,2) self.assertEqual(imp.C_EXTENSION,3) self.assertEqual(imp.PY_RESOURCE,4) self.assertEqual(imp.PKG_DIRECTORY,5) self.assertEqual(imp.C_BUILTIN,6) self.assertEqual(imp.PY_FROZEN,7) self.assertEqual(imp.PY_CODERESOURCE,8)