python-如何在Mercurial API中测试变更集的日期
作者:互联网
我只想在一定范围内的变更集上使用Mercurial Python API,从读取docs开始,我还无法弄清楚如何做到这一点.
我的代码如下所示:
from mercurial import ui, hg
import datetime
repo = hg.repository(ui.ui(), 'path_to_repo' )
start_date = datetime.datetime( 1997, 01, 01 )
end_date = datetime.datetime( 2000, 12, 31 )
# Print every changesetid in required range
for changesetid in repo:
#print repo[changesetid]
changeset = repo.changectx( changesetid )
date = changeset.date()[0]
if ( date > start_date and date < end_date):
# Do stuff...
pass
我得到的输出是:
Traceback (most recent call last):
File "test.py", line 14, in <module>
if ( date > start_date and date < end_date):
TypeError: can't compare datetime.datetime to float
输出日期示例如下:
> 645630248.0
> 887802818.0
我也看到了‘hg help dates’,但是由此无法告诉您如何将日/月/年日期转换为Mercurial的内部表示形式.
请问如何将截止日期转换为适合比较changectx.date()返回的日期值的数字格式?
PS我知道,对于一个微不足道的示例,有更好的方法直接使用hg命令来执行此操作…示例代码中未包括的是我希望在“执行任务”处添加的复杂步骤!
解决方法:
首先,请记住内部Mercurial API不稳定.如果可能的话,您应该认真考虑直接使用Mercurial的命令行.请记住,如果您发现解析默认输出太烦人,则有XML模板(通过传递–style = xml).
就是说,最容易使用revset完成此操作,就像在命令行中一样:
from mercurial import ui, hg
repo = hg.repository(ui.ui(), '/some/path/to/repo')
changesets = repo.revs("date('>1999-01-01') and date('<2000-12-31')")
作为奖励,这将通过Mercurial的内部修订优化器进行.
标签:python,mercurial,mercurial-api 来源: https://codeday.me/bug/20191029/1963437.html