comparison hgext/win32mbcs.py @ 25186:80c5b2666a96

extensions: document that `testedwith = 'internal'` is special Extension authors (notably at companies using hg) have been cargo-culting the `testedwith = 'internal'` bit from hg's own extensions, which then defeats our "file bugs over here" logic in dispatch. Let's be more aggressive about trying to give extension authors a hint about what testedwith should say.
author Augie Fackler <augie@google.com>
date Tue, 28 Apr 2015 16:44:37 -0400
parents 41c06a02814e
children 56b2bcea2529
comparison
equal deleted inserted replaced
25185:bf6b476f3b36 25186:80c5b2666a96
46 ''' 46 '''
47 47
48 import os, sys 48 import os, sys
49 from mercurial.i18n import _ 49 from mercurial.i18n import _
50 from mercurial import util, encoding 50 from mercurial import util, encoding
51 # Note for extension authors: ONLY specify testedwith = 'internal' for
52 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
53 # be specifying the version(s) of Mercurial they are tested with, or
54 # leave the attribute unspecified.
51 testedwith = 'internal' 55 testedwith = 'internal'
52 56
53 _encoding = None # see extsetup 57 _encoding = None # see extsetup
54 58
55 def decode(arg): 59 def decode(arg):