Mercurial > hg
comparison tests/test-clone.t @ 40369:ef6cab7930b3
py3: fix module imports in tests, as flagged by test-check-module-imports.t
I have no idea why these aren't flagged with python2. I excluded
test-highlight.t for now to make this easier to review- the changed code is
committed to a repo, which has cascading changes on the rest of the test.
There's a mix of bytes and str in the imports dict of contrib/import-checker.py
that crashed it half way through listing out these errors. I couldn't figure
out how to fix that properly, so I was lazy and applied this on py3, to find the
rest of the errors:
diff --git a/contrib/import-checker.py b/contrib/import-checker.py
--- a/contrib/import-checker.py
+++ b/contrib/import-checker.py
@@ -626,7 +626,12 @@ def find_cycles(imports):
top.foo -> top.qux -> top.foo
"""
cycles = set()
- for mod in sorted(imports.keys()):
+ def sort(v):
+ if isinstance(v, bytes):
+ return v.decode('ascii')
+ return v
+
+ for mod in sorted(imports.keys(), key=sort):
try:
checkmod(mod, imports)
except CircularImport as e:
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Wed, 17 Oct 2018 23:33:43 -0400 |
parents | 7ba6b880b09a |
children | e5f54c4ec075 |
comparison
equal
deleted
inserted
replaced
40368:fad6068249d9 | 40369:ef6cab7930b3 |
---|---|
556 | 556 |
557 Issue2267: Error in 1.6 hg.py: TypeError: 'NoneType' object is not | 557 Issue2267: Error in 1.6 hg.py: TypeError: 'NoneType' object is not |
558 iterable in addbranchrevs() | 558 iterable in addbranchrevs() |
559 | 559 |
560 $ cat <<EOF > simpleclone.py | 560 $ cat <<EOF > simpleclone.py |
561 > from mercurial import ui, hg | 561 > from mercurial import hg, ui as uimod |
562 > myui = ui.ui.load() | 562 > myui = uimod.ui.load() |
563 > repo = hg.repository(myui, b'a') | 563 > repo = hg.repository(myui, b'a') |
564 > hg.clone(myui, {}, repo, dest=b"ua") | 564 > hg.clone(myui, {}, repo, dest=b"ua") |
565 > EOF | 565 > EOF |
566 | 566 |
567 $ "$PYTHON" simpleclone.py | 567 $ "$PYTHON" simpleclone.py |
569 3 files updated, 0 files merged, 0 files removed, 0 files unresolved | 569 3 files updated, 0 files merged, 0 files removed, 0 files unresolved |
570 | 570 |
571 $ rm -r ua | 571 $ rm -r ua |
572 | 572 |
573 $ cat <<EOF > branchclone.py | 573 $ cat <<EOF > branchclone.py |
574 > from mercurial import ui, hg, extensions | 574 > from mercurial import extensions, hg, ui as uimod |
575 > myui = ui.ui.load() | 575 > myui = uimod.ui.load() |
576 > extensions.loadall(myui) | 576 > extensions.loadall(myui) |
577 > repo = hg.repository(myui, b'a') | 577 > repo = hg.repository(myui, b'a') |
578 > hg.clone(myui, {}, repo, dest=b"ua", branch=[b"stable",]) | 578 > hg.clone(myui, {}, repo, dest=b"ua", branch=[b"stable",]) |
579 > EOF | 579 > EOF |
580 | 580 |