Mercurial > hgrepos > DevTools > mercurial-extensions
changeset 337:cd42b8578901
Place "testedwith" at the begin of global variables
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Wed, 17 Jul 2019 09:03:18 +0200 |
| parents | eb1e0f129963 |
| children | 038cca685729 |
| files | extensions/kwarchive.py extensions/revinfo.py |
| diffstat | 2 files changed, 2 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/extensions/kwarchive.py Tue Jul 16 21:31:28 2019 +0200 +++ b/extensions/kwarchive.py Wed Jul 17 09:03:18 2019 +0200 @@ -118,7 +118,6 @@ testedwith = b"4.3.1 4.3.2 4.4.1 4.4.2 4.5.2 4.6.1 4.8.1 4.9 5.0.1" - SHORTENED_HG_SCHEMES = { b"ssh": b"hg+ssh", b"http": b"hg+http", @@ -126,10 +125,8 @@ b"file": b"file", } - KWARCHIVE_CONFIG = b".hgkwarchive" - cmdtable = {} if registrar and hasattr(registrar, "command"):
--- a/extensions/revinfo.py Tue Jul 16 21:31:28 2019 +0200 +++ b/extensions/revinfo.py Wed Jul 17 09:03:18 2019 +0200 @@ -30,6 +30,8 @@ registrar = None +testedwith = b"4.3.1 4.3.2 4.4.1 4.4.2 4.5.2 4.6.1 4.8.1 4.9 5.0.1" + cmdtable = {} if registrar and hasattr(registrar, "command"): @@ -38,9 +40,6 @@ command = cmdutil.command(cmdtable) -testedwith = b"4.3.1 4.3.2 4.4.1 4.4.2 4.5.2 4.6.1 4.8.1 4.9 5.0.1" - - def getversion(): """Provide the version information for verbose :hg:`version` output.
