1
fanzeyi 2012-08-24 23:25:29 +08:00
代码可以贴到 gist.github.com
|
2
tedd OP 谢谢@fanzeyi,我来试下
git://gist.github.com/3452007.git <script src="https://gist.github.com/3452007.js"> </script> |
3
fanzeyi 2012-08-24 23:31:36 +08:00
|
5
lidashuang 2012-08-24 23:34:01 +08:00
|
6
fanzeyi 2012-08-24 23:34:37 +08:00
@tedd http://gist.github.com/ + 编号 就行了
|
7
tedd OP 谢谢fanzeyi,又学到一条
|
8
alsotang 2012-08-25 22:35:57 +08:00
for action in getActions(issueKey):
issueDict[issueKey] = action['name'] 这一句看着不舒服,我怀疑issueDict里面会有issueKey被replace掉 把dict写入文件的话,不知你写入文件的目的是什么。可以用JSON来保存吧我想,因为毕竟都是字符串嘛;如果不那么通用的话,Python自带了cPickle可以用啊,用来序列化存储Python数据结构的。 auth的命名建议用g_auth,在getActions里面见到auth这个不知来源的变量名觉得突兀。 |