本文整理汇总了Python中sgLib.core.Gcore.resetRuntime方法的典型用法代码示例。如果您正苦于以下问题:Python Gcore.resetRuntime方法的具体用法?Python Gcore.resetRuntime怎么用?Python Gcore.resetRuntime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sgLib.core.Gcore
的用法示例。
在下文中一共展示了Gcore.resetRuntime方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test
# 需要导入模块: from sgLib.core import Gcore [as 别名]
# 或者: from sgLib.core.Gcore import resetRuntime [as 别名]
def test():
import time
uid = 1012
#uid = 43400
Gcore.resetRuntime()
c = ChatUI(uid)
#p = {'Channel':1,'Content':'fuckyou'}
import chardet
#s = u"*\uff65\u309c\uff9f\uff65*:.\uff61..\uff61.:*\uff65'(*\uff9f\u25bd\uff9f*)'\uff65*:.\uff61. .\uff61.:*\uff65\u309c\uff9f\uff65*"
#print s.encode('utf8') #Content": "*・゜゚・*:.。..。.:*・'(*゚▽゚*)'・*:.。. .。.:*・゜゚・*
#p = {"Content": "asdasd", "ClientTime": 1371108139, "Channel": 4,"ToName":'孟蓝'}
p = {"Content": "hhh", "ClientTime": 1371780923, "Channel": 1}
for _ in range(2):
print '================='
print c.Say(p)
print '================='
time.sleep(1)
Gcore.runtime()