當前位置: 首頁>>代碼示例>>Python>>正文


Python imp.get_frozen_object方法代碼示例

本文整理匯總了Python中imp.get_frozen_object方法的典型用法代碼示例。如果您正苦於以下問題:Python imp.get_frozen_object方法的具體用法?Python imp.get_frozen_object怎麽用?Python imp.get_frozen_object使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在imp的用法示例。


在下文中一共展示了imp.get_frozen_object方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_module_constant

# 需要導入模塊: import imp [as 別名]
# 或者: from imp import get_frozen_object [as 別名]
def get_module_constant(module, symbol, default=-1, paths=None):

    """Find 'module' by searching 'paths', and extract 'symbol'

    Return 'None' if 'module' does not exist on 'paths', or it does not define
    'symbol'.  If the module defines 'symbol' as a constant, return the
    constant.  Otherwise, return 'default'."""

    try:
        f, path, (suffix, mode, kind) = find_module(module, paths)
    except ImportError:
        # Module doesn't exist
        return None

    try:
        if kind==PY_COMPILED:
            f.read(8)   # skip magic & date
            code = marshal.load(f)
        elif kind==PY_FROZEN:
            code = imp.get_frozen_object(module)
        elif kind==PY_SOURCE:
            code = compile(f.read(), path, 'exec')
        else:
            # Not something we can parse; we'll have to import it.  :(
            if module not in sys.modules:
                imp.load_module(module, f, path, (suffix, mode, kind))
            return getattr(sys.modules[module], symbol, None)

    finally:
        if f:
            f.close()

    return extract_constant(code, symbol, default) 
開發者ID:jpush,項目名稱:jbox,代碼行數:35,代碼來源:depends.py

示例2: get_module_constant

# 需要導入模塊: import imp [as 別名]
# 或者: from imp import get_frozen_object [as 別名]
def get_module_constant(module, symbol, default=-1, paths=None):
    """Find 'module' by searching 'paths', and extract 'symbol'

    Return 'None' if 'module' does not exist on 'paths', or it does not define
    'symbol'.  If the module defines 'symbol' as a constant, return the
    constant.  Otherwise, return 'default'."""

    try:
        f, path, (suffix, mode, kind) = find_module(module, paths)
    except ImportError:
        # Module doesn't exist
        return None

    try:
        if kind == PY_COMPILED:
            f.read(8)  # skip magic & date
            code = marshal.load(f)
        elif kind == PY_FROZEN:
            code = imp.get_frozen_object(module)
        elif kind == PY_SOURCE:
            code = compile(f.read(), path, 'exec')
        else:
            # Not something we can parse; we'll have to import it.  :(
            if module not in sys.modules:
                imp.load_module(module, f, path, (suffix, mode, kind))
            return getattr(sys.modules[module], symbol, None)

    finally:
        if f:
            f.close()

    return extract_constant(code, symbol, default) 
開發者ID:sofia-netsurv,項目名稱:python-netsurv,代碼行數:34,代碼來源:depends.py

示例3: get_frozen_object

# 需要導入模塊: import imp [as 別名]
# 或者: from imp import get_frozen_object [as 別名]
def get_frozen_object(self, name): return imp.get_frozen_object(name) 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:3,代碼來源:ihooks.py

示例4: get_module_constant

# 需要導入模塊: import imp [as 別名]
# 或者: from imp import get_frozen_object [as 別名]
def get_module_constant(module, symbol, default=-1, paths=None):

    """Find 'module' by searching 'paths', and extract 'symbol'

    Return 'None' if 'module' does not exist on 'paths', or it does not define
    'symbol'.  If the module defines 'symbol' as a constant, return the
    constant.  Otherwise, return 'default'."""

    try:
        f, path, (suffix,mode,kind) = find_module(module,paths)
    except ImportError:
        # Module doesn't exist
        return None

    try:
        if kind==PY_COMPILED:
            f.read(8)   # skip magic & date
            code = marshal.load(f)
        elif kind==PY_FROZEN:
            code = imp.get_frozen_object(module)
        elif kind==PY_SOURCE:
            code = compile(f.read(), path, 'exec')
        else:
            # Not something we can parse; we'll have to import it.  :(
            if module not in sys.modules:
                imp.load_module(module,f,path,(suffix,mode,kind))
            return getattr(sys.modules[module],symbol,None)

    finally:
        if f:
            f.close()

    return extract_constant(code,symbol,default) 
開發者ID:MayOneUS,項目名稱:pledgeservice,代碼行數:35,代碼來源:depends.py

示例5: test_get_frozen_object

# 需要導入模塊: import imp [as 別名]
# 或者: from imp import get_frozen_object [as 別名]
def test_get_frozen_object(self):
        # frozen objects not supported, this always fails
        self.assertRaises(ImportError, imp.get_frozen_object, 'foo') 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:5,代碼來源:test_imp.py

示例6: get_module_constant

# 需要導入模塊: import imp [as 別名]
# 或者: from imp import get_frozen_object [as 別名]
def get_module_constant(module, symbol, default=-1, paths=None):
    """Find 'module' by searching 'paths', and extract 'symbol'

    Return 'None' if 'module' does not exist on 'paths', or it does not define
    'symbol'.  If the module defines 'symbol' as a constant, return the
    constant.  Otherwise, return 'default'."""

    try:
        f, path, (suffix, mode, kind) = find_module(module, paths)
    except ImportError:
        # Module doesn't exist
        return None

    try:
        if kind == PY_COMPILED:
            f.read(8)   # skip magic & date
            code = marshal.load(f)
        elif kind == PY_FROZEN:
            code = imp.get_frozen_object(module)
        elif kind == PY_SOURCE:
            code = compile(f.read(), path, 'exec')
        else:
            # Not something we can parse; we'll have to import it.  :(
            if module not in sys.modules:
                imp.load_module(module, f, path, (suffix, mode, kind))
            return getattr(sys.modules[module], symbol, None)

    finally:
        if f:
            f.close()

    return extract_constant(code, symbol, default) 
開發者ID:awemulya,項目名稱:kobo-predict,代碼行數:34,代碼來源:depends.py

示例7: get_frozen_object

# 需要導入模塊: import imp [as 別名]
# 或者: from imp import get_frozen_object [as 別名]
def get_frozen_object(module, paths):
        return imp.get_frozen_object(module) 
開發者ID:pantsbuild,項目名稱:pex,代碼行數:4,代碼來源:py27compat.py


注:本文中的imp.get_frozen_object方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。