当前位置: 首页>>代码示例>>Python>>正文


Python Preferences.cast方法代码示例

本文整理汇总了Python中mozprofile.prefs.Preferences.cast方法的典型用法代码示例。如果您正苦于以下问题:Python Preferences.cast方法的具体用法?Python Preferences.cast怎么用?Python Preferences.cast使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mozprofile.prefs.Preferences的用法示例。


在下文中一共展示了Preferences.cast方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_ordered_prefs

# 需要导入模块: from mozprofile.prefs import Preferences [as 别名]
# 或者: from mozprofile.prefs.Preferences import cast [as 别名]
 def test_ordered_prefs(self):
     """ensure the prefs stay in the right order"""
     _prefs = [("browser.startup.homepage", "http://planet.mozilla.org/"),
               ("zoom.minPercent", 30),
               ("zoom.maxPercent", 300),
               ("webgl.verbose", 'false')]
     commandline = ["mozprofile"]
     for pref, value in _prefs:
         commandline += ["--pref", "%s:%s" % (pref, value)]
     _prefs = [(i, Preferences.cast(j)) for i, j in _prefs]
     self.compare_generated(_prefs, commandline)
开发者ID:jmaher,项目名称:mozmill,代码行数:13,代码来源:testprofile.py

示例2: setData

# 需要导入模块: from mozprofile.prefs import Preferences [as 别名]
# 或者: from mozprofile.prefs.Preferences import cast [as 别名]
 def setData(self, index, new_value, role=Qt.EditRole):
     new_value = unicode(new_value.toString())
     name, value = self.prefs[index.row()]
     if index.column() == 0:
         # change pref name
         name = new_value
     else:
         # change pref value
         value = Preferences.cast(new_value)
     self.prefs[index.row()] = (name, value)
     return True
开发者ID:EricRahm,项目名称:mozregression,代码行数:13,代码来源:pref_editor.py

示例3: parse_pref

# 需要导入模块: from mozprofile.prefs import Preferences [as 别名]
# 或者: from mozprofile.prefs.Preferences import cast [as 别名]
def parse_pref(value):
    """parse a preference value from a string"""
    from mozprofile.prefs import Preferences
    return Preferences.cast(value)
开发者ID:MichaelKohler,项目名称:gecko-dev,代码行数:6,代码来源:utils.py


注:本文中的mozprofile.prefs.Preferences.cast方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。