Mercurial > public > mercurial-scm > hg
comparison hgext/progress.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 | 5502bd79d052 |
children | 95f490136e75 |
comparison
equal
deleted
inserted
replaced
25185:bf6b476f3b36 | 25186:80c5b2666a96 |
---|---|
38 import sys | 38 import sys |
39 import time | 39 import time |
40 import threading | 40 import threading |
41 | 41 |
42 from mercurial.i18n import _ | 42 from mercurial.i18n import _ |
43 # Note for extension authors: ONLY specify testedwith = 'internal' for | |
44 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should | |
45 # be specifying the version(s) of Mercurial they are tested with, or | |
46 # leave the attribute unspecified. | |
43 testedwith = 'internal' | 47 testedwith = 'internal' |
44 | 48 |
45 from mercurial import encoding | 49 from mercurial import encoding |
46 | 50 |
47 def spacejoin(*args): | 51 def spacejoin(*args): |