本文整理汇总了Python中Debug.msg方法的典型用法代码示例。如果您正苦于以下问题:Python Debug.msg方法的具体用法?Python Debug.msg怎么用?Python Debug.msg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Debug
的用法示例。
在下文中一共展示了Debug.msg方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: readconfiguration
# 需要导入模块: import Debug [as 别名]
# 或者: from Debug import msg [as 别名]
def readconfiguration():
global cf
global preferences
for line in cf:
Debug.msg("Configuration line: " + line.rstrip())
if line[0] == "#":
continue
key = line.partition(":")[0]
rhs = line.partition(":")[2]
value = rhs.partition("#")[0]
if key == "history_size":
if int(value) > 0 or int(value) < 1000:
preferences["history_size"] = value
else:
sys.exit("Invalid valure after: history_size")
Debug.msg("") # Newline
示例2: getrecords
# 需要导入模块: import Debug [as 别名]
# 或者: from Debug import msg [as 别名]
def getrecords():
global rf
global records
records = load(rf) # load -> pickle.load
Debug.msg("Number of records: " + str(len(records)) + "\n")
示例3: printconfiguration
# 需要导入模块: import Debug [as 别名]
# 或者: from Debug import msg [as 别名]
def printconfiguration():
global preferences
Debug.msg("Preferences:")
for pref, value in preferences.items():
Debug.msg(pref + ": " + value.rstrip())
Debug.msg("") # Newline
示例4: getpath
# 需要导入模块: import Debug [as 别名]
# 或者: from Debug import msg [as 别名]
def getpath():
global dir
dir = path[0] # sys.path
Debug.msg("Directory is: " + dir + "\n")