hgext/blackbox.py
changeset 25186 80c5b2666a96
parent 23877 7cc77030c557
child 25660 328739ea70c3
equal deleted inserted replaced
25185:bf6b476f3b36 25186:80c5b2666a96
    33 from mercurial.i18n import _
    33 from mercurial.i18n import _
    34 import errno, os, re
    34 import errno, os, re
    35 
    35 
    36 cmdtable = {}
    36 cmdtable = {}
    37 command = cmdutil.command(cmdtable)
    37 command = cmdutil.command(cmdtable)
       
    38 # Note for extension authors: ONLY specify testedwith = 'internal' for
       
    39 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
       
    40 # be specifying the version(s) of Mercurial they are tested with, or
       
    41 # leave the attribute unspecified.
    38 testedwith = 'internal'
    42 testedwith = 'internal'
    39 lastblackbox = None
    43 lastblackbox = None
    40 
    44 
    41 def wrapui(ui):
    45 def wrapui(ui):
    42     class blackboxui(ui.__class__):
    46     class blackboxui(ui.__class__):