Mercurial > hg
comparison hgext/largefiles/__init__.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 | 15d434bee41c |
children | dcb4209bd30d |
comparison
equal
deleted
inserted
replaced
25185:bf6b476f3b36 | 25186:80c5b2666a96 |
---|---|
110 import lfcommands | 110 import lfcommands |
111 import proto | 111 import proto |
112 import reposetup | 112 import reposetup |
113 import uisetup as uisetupmod | 113 import uisetup as uisetupmod |
114 | 114 |
115 # Note for extension authors: ONLY specify testedwith = 'internal' for | |
116 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should | |
117 # be specifying the version(s) of Mercurial they are tested with, or | |
118 # leave the attribute unspecified. | |
115 testedwith = 'internal' | 119 testedwith = 'internal' |
116 | 120 |
117 reposetup = reposetup.reposetup | 121 reposetup = reposetup.reposetup |
118 | 122 |
119 def featuresetup(ui, supported): | 123 def featuresetup(ui, supported): |