hgext/blackbox.py
changeset 29841 d5883fd055c6
parent 28552 999e1acc61aa
child 32155 055cca8e167b
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
    49     util,
    49     util,
    50 )
    50 )
    51 
    51 
    52 cmdtable = {}
    52 cmdtable = {}
    53 command = cmdutil.command(cmdtable)
    53 command = cmdutil.command(cmdtable)
    54 # Note for extension authors: ONLY specify testedwith = 'internal' for
    54 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    55 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    55 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    56 # be specifying the version(s) of Mercurial they are tested with, or
    56 # be specifying the version(s) of Mercurial they are tested with, or
    57 # leave the attribute unspecified.
    57 # leave the attribute unspecified.
    58 testedwith = 'internal'
    58 testedwith = 'ships-with-hg-core'
    59 lastui = None
    59 lastui = None
    60 
    60 
    61 filehandles = {}
    61 filehandles = {}
    62 
    62 
    63 def _openlog(vfs):
    63 def _openlog(vfs):