摘要: import enum class BugStatus(enum.IntEnum): new = 7 incomplete = 6 invalid = 5 wont_fix = 4 in_progress = 3 fix_committed = 2 fix_released = 1 print('O 阅读全文
posted @ 2019-10-14 16:34 zhouhaiwu 阅读(104) 评论(0) 推荐(0) 编辑
摘要: import enum class BugStatus(enum.Enum): new = 7 incomplete = 6 invalid = 5 wont_fix = 4 in_progress = 3 fix_committed = 2 fix_released = 1 for status 阅读全文
posted @ 2019-10-14 16:12 zhouhaiwu 阅读(383) 评论(0) 推荐(0) 编辑
摘要: import enum class BugStatus(enum.Enum): new = 7 incomplete = 6 invalid = 5 wont_fix = 4 in_progress = 3 fix_committed = 2 fix_released = 1 print('\nMe 阅读全文
posted @ 2019-10-14 16:09 zhouhaiwu 阅读(315) 评论(0) 推荐(0) 编辑