码迷,mamicode.com
首页 > 其他好文 > 详细

根据SVN的MESSAGE进行多版本输出,反向排序,真是曲折~~~啊

时间:2014-08-05 03:00:28      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   for   2014   art   

 

import os,sys,time

file = open(svnlog)
revList = []
tempList = []
linen = 1
for line in file:
    if (line.startswith("r")) :
        svnNumber = line.split(|)[0]
        tempList.append(svnNumber)
    if line.find(APP-80) != -1 :
        tempList.append(line)
        revList.append(tempList)
        tempList = []
    linen +=1

svnRevList=[]
for i in range(len(revList)):
    svnRev = "".join(revList[i][-2:-1])
    svnRevList.append(svnRev.strip()[1:])
    #for j in range(len(revList[i])):
#       print revList[i][j]
print svnRevList

svnRevList.sort()
for i in range(len(svnRevList)):
    print svnRevList[i]
file.close()
~               

bubuko.com,布布扣

根据SVN的MESSAGE进行多版本输出,反向排序,真是曲折~~~啊,布布扣,bubuko.com

根据SVN的MESSAGE进行多版本输出,反向排序,真是曲折~~~啊

标签:style   blog   http   color   os   for   2014   art   

原文地址:http://www.cnblogs.com/aguncn/p/3891333.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!