##// END OF EJS Templates
py3: split check of pygments-using files from the rest of the tree...
Augie Fackler -
r29886:e2c086f1 default
parent child Browse files
Show More
@@ -12,8 +12,8 b''
12 setup.py not using absolute_import
12 setup.py not using absolute_import
13 tests/test-demandimport.py not using absolute_import
13 tests/test-demandimport.py not using absolute_import
14
14
15 #if py3exe py3pygments
15 #if py3exe
16 $ hg files 'set:(**.py)' | sed 's|\\|/|g' \
16 $ hg files 'set:(**.py) - grep(pygments)' | sed 's|\\|/|g' \
17 > | xargs $PYTHON3 contrib/check-py3-compat.py \
17 > | xargs $PYTHON3 contrib/check-py3-compat.py \
18 > | sed 's/[0-9][0-9]*)$/*)/'
18 > | sed 's/[0-9][0-9]*)$/*)/'
19 doc/hgmanpage.py: invalid syntax: invalid syntax (<unknown>, line *)
19 doc/hgmanpage.py: invalid syntax: invalid syntax (<unknown>, line *)
@@ -50,7 +50,6 b''
50 hgext/gpg.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
50 hgext/gpg.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
51 hgext/graphlog.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
51 hgext/graphlog.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
52 hgext/hgk.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
52 hgext/hgk.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
53 hgext/highlight/highlight.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
54 hgext/histedit.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
53 hgext/histedit.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
55 hgext/journal.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
54 hgext/journal.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
56 hgext/keyword.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
55 hgext/keyword.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
@@ -172,3 +171,10 b''
172 mercurial/wireproto.py: error importing module: <TypeError> unorderable types: str() >= tuple() (line *)
171 mercurial/wireproto.py: error importing module: <TypeError> unorderable types: str() >= tuple() (line *)
173
172
174 #endif
173 #endif
174
175 #if py3exe py3pygments
176 $ hg files 'set:(**.py) and grep(pygments)' | sed 's|\\|/|g' \
177 > | xargs $PYTHON3 contrib/check-py3-compat.py \
178 > | sed 's/[0-9][0-9]*)$/*)/'
179 hgext/highlight/highlight.py: error importing: <TypeError> str expected, not bytes (error at encoding.py:*)
180 #endif
General Comments 0
You need to be logged in to leave comments. Login now