##// END OF EJS Templates
revset: record if a set is in topographical order...
revset: record if a set is in topographical order A later revision adds actual topographical sorting. Recording if a set is in this order allows hg log -G to avoid re-sorting the revset.

File last commit:

r28943:417380aa default
r29346:38e0c83c default
Show More
mockblackbox.py
17 lines | 332 B | text/x-python | PythonLexer
from __future__ import absolute_import
from mercurial import (
util,
)
def makedate():
return 0, 0
def getuser():
return 'bob'
def getpid():
return 5000
# mock the date and user apis so the output is always the same
def uisetup(ui):
util.makedate = makedate
util.getuser = getuser
util.getpid = getpid