本文整理汇总了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)
示例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
示例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)