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


Python mimetypes._winreg方法代碼示例

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


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

示例1: test_non_latin_extension

# 需要導入模塊: import mimetypes [as 別名]
# 或者: from mimetypes import _winreg [as 別名]
def test_non_latin_extension(self):
        import _winreg

        class MockWinreg(object):
            def __getattr__(self, name):
                if name == 'EnumKey':
                    return lambda key, i: _winreg.EnumKey(key, i) + "\xa3"
                elif name == 'OpenKey':
                    return lambda key, name: _winreg.OpenKey(key, name.rstrip("\xa3"))
                elif name == 'QueryValueEx':
                    return lambda subkey, label: (u'текст/простой' , _winreg.REG_SZ)
                return getattr(_winreg, name)

        mimetypes._winreg = MockWinreg()
        try:
            # this used to throw an exception if registry contained non-Latin
            # characters in extensions (issue #9291)
            mimetypes.init()
        finally:
            mimetypes._winreg = _winreg 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:22,代碼來源:test_mimetypes.py

示例2: test_non_latin_type

# 需要導入模塊: import mimetypes [as 別名]
# 或者: from mimetypes import _winreg [as 別名]
def test_non_latin_type(self):
        import _winreg

        class MockWinreg(object):
            def __getattr__(self, name):
                if name == 'QueryValueEx':
                    return lambda subkey, label: (u'текст/простой', _winreg.REG_SZ)
                return getattr(_winreg, name)

        mimetypes._winreg = MockWinreg()
        try:
            # this used to throw an exception if registry contained non-Latin
            # characters in content types (issue #9291)
            mimetypes.init()
        finally:
            mimetypes._winreg = _winreg 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:18,代碼來源:test_mimetypes.py

示例3: test_registry_read_error

# 需要導入模塊: import mimetypes [as 別名]
# 或者: from mimetypes import _winreg [as 別名]
def test_registry_read_error(self):
        import _winreg

        class MockWinreg(object):
            def OpenKey(self, key, name):
                if key != _winreg.HKEY_CLASSES_ROOT:
                    raise WindowsError(5, "Access is denied")
                return _winreg.OpenKey(key, name)
            def __getattr__(self, name):
                return getattr(_winreg, name)

        mimetypes._winreg = MockWinreg()
        try:
            mimetypes.init()
        finally:
            mimetypes._winreg = _winreg 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:18,代碼來源:test_mimetypes.py

示例4: test_type_map_values

# 需要導入模塊: import mimetypes [as 別名]
# 或者: from mimetypes import _winreg [as 別名]
def test_type_map_values(self):
        import _winreg

        class MockWinreg(object):
            def __getattr__(self, name):
                if name == 'QueryValueEx':
                    return lambda subkey, label: (u'text/plain', _winreg.REG_SZ)
                return getattr(_winreg, name)

        mimetypes._winreg = MockWinreg()
        try:
            mimetypes.init()
            self.assertTrue(isinstance(mimetypes.types_map.values()[0], str))
        finally:
            mimetypes._winreg = _winreg 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:17,代碼來源:test_mimetypes.py


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