hgext/keyword.py
changeset 29841 d5883fd055c6
parent 29634 8421cbebc783
child 29969 862ab1cdb218
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
   110     util,
   110     util,
   111 )
   111 )
   112 
   112 
   113 cmdtable = {}
   113 cmdtable = {}
   114 command = cmdutil.command(cmdtable)
   114 command = cmdutil.command(cmdtable)
   115 # Note for extension authors: ONLY specify testedwith = 'internal' for
   115 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
   116 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
   116 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
   117 # be specifying the version(s) of Mercurial they are tested with, or
   117 # be specifying the version(s) of Mercurial they are tested with, or
   118 # leave the attribute unspecified.
   118 # leave the attribute unspecified.
   119 testedwith = 'internal'
   119 testedwith = 'ships-with-hg-core'
   120 
   120 
   121 # hg commands that do not act on keywords
   121 # hg commands that do not act on keywords
   122 nokwcommands = ('add addremove annotate bundle export grep incoming init log'
   122 nokwcommands = ('add addremove annotate bundle export grep incoming init log'
   123                 ' outgoing push tip verify convert email glog')
   123                 ' outgoing push tip verify convert email glog')
   124 
   124