Show More
@@ -1,26 +1,26 b'' | |||||
1 | # node.py - basic nodeid manipulation for mercurial |
|
1 | # node.py - basic nodeid manipulation for mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
|
3 | # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | from __future__ import absolute_import |
|
8 | from __future__ import absolute_import | |
9 |
|
9 | |||
10 | import binascii |
|
10 | import binascii | |
11 |
|
11 | |||
12 | # This ugly style has a noticeable effect in manifest parsing |
|
12 | # This ugly style has a noticeable effect in manifest parsing | |
13 | hex = binascii.hexlify |
|
13 | hex = binascii.hexlify | |
14 | bin = binascii.unhexlify |
|
14 | bin = binascii.unhexlify | |
15 |
|
15 | |||
16 | nullrev = -1 |
|
16 | nullrev = -1 | |
17 | nullid = "\0" * 20 |
|
17 | nullid = b"\0" * 20 | |
18 | nullhex = hex(nullid) |
|
18 | nullhex = hex(nullid) | |
19 |
|
19 | |||
20 | # pseudo identifiers for working directory |
|
20 | # pseudo identifiers for working directory | |
21 | # (they are experimental, so don't add too many dependencies on them) |
|
21 | # (they are experimental, so don't add too many dependencies on them) | |
22 | wdirrev = 0x7fffffff |
|
22 | wdirrev = 0x7fffffff | |
23 | wdirid = "\xff" * 20 |
|
23 | wdirid = b"\xff" * 20 | |
24 |
|
24 | |||
25 | def short(node): |
|
25 | def short(node): | |
26 | return hex(node[:6]) |
|
26 | return hex(node[:6]) |
@@ -1,316 +1,309 b'' | |||||
1 | #require test-repo |
|
1 | #require test-repo | |
2 |
|
2 | |||
3 | $ cd "$TESTDIR"/.. |
|
3 | $ cd "$TESTDIR"/.. | |
4 |
|
4 | |||
5 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py |
|
5 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py | |
6 | contrib/import-checker.py not using absolute_import |
|
6 | contrib/import-checker.py not using absolute_import | |
7 | contrib/import-checker.py requires print_function |
|
7 | contrib/import-checker.py requires print_function | |
8 | doc/check-seclevel.py not using absolute_import |
|
8 | doc/check-seclevel.py not using absolute_import | |
9 | doc/gendoc.py not using absolute_import |
|
9 | doc/gendoc.py not using absolute_import | |
10 | doc/hgmanpage.py not using absolute_import |
|
10 | doc/hgmanpage.py not using absolute_import | |
11 | hgext/color.py not using absolute_import |
|
11 | hgext/color.py not using absolute_import | |
12 | hgext/eol.py not using absolute_import |
|
12 | hgext/eol.py not using absolute_import | |
13 | hgext/extdiff.py not using absolute_import |
|
13 | hgext/extdiff.py not using absolute_import | |
14 | hgext/factotum.py not using absolute_import |
|
14 | hgext/factotum.py not using absolute_import | |
15 | hgext/fetch.py not using absolute_import |
|
15 | hgext/fetch.py not using absolute_import | |
16 | hgext/fsmonitor/pywatchman/__init__.py not using absolute_import |
|
16 | hgext/fsmonitor/pywatchman/__init__.py not using absolute_import | |
17 | hgext/fsmonitor/pywatchman/__init__.py requires print_function |
|
17 | hgext/fsmonitor/pywatchman/__init__.py requires print_function | |
18 | hgext/fsmonitor/pywatchman/capabilities.py not using absolute_import |
|
18 | hgext/fsmonitor/pywatchman/capabilities.py not using absolute_import | |
19 | hgext/fsmonitor/pywatchman/pybser.py not using absolute_import |
|
19 | hgext/fsmonitor/pywatchman/pybser.py not using absolute_import | |
20 | hgext/gpg.py not using absolute_import |
|
20 | hgext/gpg.py not using absolute_import | |
21 | hgext/graphlog.py not using absolute_import |
|
21 | hgext/graphlog.py not using absolute_import | |
22 | hgext/hgcia.py not using absolute_import |
|
22 | hgext/hgcia.py not using absolute_import | |
23 | hgext/hgk.py not using absolute_import |
|
23 | hgext/hgk.py not using absolute_import | |
24 | hgext/highlight/__init__.py not using absolute_import |
|
24 | hgext/highlight/__init__.py not using absolute_import | |
25 | hgext/highlight/highlight.py not using absolute_import |
|
25 | hgext/highlight/highlight.py not using absolute_import | |
26 | hgext/histedit.py not using absolute_import |
|
26 | hgext/histedit.py not using absolute_import | |
27 | hgext/largefiles/__init__.py not using absolute_import |
|
27 | hgext/largefiles/__init__.py not using absolute_import | |
28 | hgext/largefiles/basestore.py not using absolute_import |
|
28 | hgext/largefiles/basestore.py not using absolute_import | |
29 | hgext/largefiles/lfcommands.py not using absolute_import |
|
29 | hgext/largefiles/lfcommands.py not using absolute_import | |
30 | hgext/largefiles/lfutil.py not using absolute_import |
|
30 | hgext/largefiles/lfutil.py not using absolute_import | |
31 | hgext/largefiles/localstore.py not using absolute_import |
|
31 | hgext/largefiles/localstore.py not using absolute_import | |
32 | hgext/largefiles/overrides.py not using absolute_import |
|
32 | hgext/largefiles/overrides.py not using absolute_import | |
33 | hgext/largefiles/proto.py not using absolute_import |
|
33 | hgext/largefiles/proto.py not using absolute_import | |
34 | hgext/largefiles/remotestore.py not using absolute_import |
|
34 | hgext/largefiles/remotestore.py not using absolute_import | |
35 | hgext/largefiles/reposetup.py not using absolute_import |
|
35 | hgext/largefiles/reposetup.py not using absolute_import | |
36 | hgext/largefiles/uisetup.py not using absolute_import |
|
36 | hgext/largefiles/uisetup.py not using absolute_import | |
37 | hgext/largefiles/wirestore.py not using absolute_import |
|
37 | hgext/largefiles/wirestore.py not using absolute_import | |
38 | hgext/mq.py not using absolute_import |
|
38 | hgext/mq.py not using absolute_import | |
39 | hgext/rebase.py not using absolute_import |
|
39 | hgext/rebase.py not using absolute_import | |
40 | hgext/share.py not using absolute_import |
|
40 | hgext/share.py not using absolute_import | |
41 | hgext/win32text.py not using absolute_import |
|
41 | hgext/win32text.py not using absolute_import | |
42 | i18n/check-translation.py not using absolute_import |
|
42 | i18n/check-translation.py not using absolute_import | |
43 | i18n/polib.py not using absolute_import |
|
43 | i18n/polib.py not using absolute_import | |
44 | setup.py not using absolute_import |
|
44 | setup.py not using absolute_import | |
45 | tests/filterpyflakes.py requires print_function |
|
45 | tests/filterpyflakes.py requires print_function | |
46 | tests/generate-working-copy-states.py requires print_function |
|
46 | tests/generate-working-copy-states.py requires print_function | |
47 | tests/get-with-headers.py requires print_function |
|
47 | tests/get-with-headers.py requires print_function | |
48 | tests/heredoctest.py requires print_function |
|
48 | tests/heredoctest.py requires print_function | |
49 | tests/hypothesishelpers.py not using absolute_import |
|
49 | tests/hypothesishelpers.py not using absolute_import | |
50 | tests/hypothesishelpers.py requires print_function |
|
50 | tests/hypothesishelpers.py requires print_function | |
51 | tests/killdaemons.py not using absolute_import |
|
51 | tests/killdaemons.py not using absolute_import | |
52 | tests/md5sum.py not using absolute_import |
|
52 | tests/md5sum.py not using absolute_import | |
53 | tests/mockblackbox.py not using absolute_import |
|
53 | tests/mockblackbox.py not using absolute_import | |
54 | tests/printenv.py not using absolute_import |
|
54 | tests/printenv.py not using absolute_import | |
55 | tests/readlink.py not using absolute_import |
|
55 | tests/readlink.py not using absolute_import | |
56 | tests/readlink.py requires print_function |
|
56 | tests/readlink.py requires print_function | |
57 | tests/revlog-formatv0.py not using absolute_import |
|
57 | tests/revlog-formatv0.py not using absolute_import | |
58 | tests/run-tests.py not using absolute_import |
|
58 | tests/run-tests.py not using absolute_import | |
59 | tests/seq.py not using absolute_import |
|
59 | tests/seq.py not using absolute_import | |
60 | tests/seq.py requires print_function |
|
60 | tests/seq.py requires print_function | |
61 | tests/silenttestrunner.py not using absolute_import |
|
61 | tests/silenttestrunner.py not using absolute_import | |
62 | tests/silenttestrunner.py requires print_function |
|
62 | tests/silenttestrunner.py requires print_function | |
63 | tests/sitecustomize.py not using absolute_import |
|
63 | tests/sitecustomize.py not using absolute_import | |
64 | tests/svn-safe-append.py not using absolute_import |
|
64 | tests/svn-safe-append.py not using absolute_import | |
65 | tests/svnxml.py not using absolute_import |
|
65 | tests/svnxml.py not using absolute_import | |
66 | tests/test-ancestor.py requires print_function |
|
66 | tests/test-ancestor.py requires print_function | |
67 | tests/test-atomictempfile.py not using absolute_import |
|
67 | tests/test-atomictempfile.py not using absolute_import | |
68 | tests/test-batching.py not using absolute_import |
|
68 | tests/test-batching.py not using absolute_import | |
69 | tests/test-batching.py requires print_function |
|
69 | tests/test-batching.py requires print_function | |
70 | tests/test-bdiff.py not using absolute_import |
|
70 | tests/test-bdiff.py not using absolute_import | |
71 | tests/test-bdiff.py requires print_function |
|
71 | tests/test-bdiff.py requires print_function | |
72 | tests/test-context.py not using absolute_import |
|
72 | tests/test-context.py not using absolute_import | |
73 | tests/test-context.py requires print_function |
|
73 | tests/test-context.py requires print_function | |
74 | tests/test-demandimport.py not using absolute_import |
|
74 | tests/test-demandimport.py not using absolute_import | |
75 | tests/test-demandimport.py requires print_function |
|
75 | tests/test-demandimport.py requires print_function | |
76 | tests/test-doctest.py not using absolute_import |
|
76 | tests/test-doctest.py not using absolute_import | |
77 | tests/test-duplicateoptions.py not using absolute_import |
|
77 | tests/test-duplicateoptions.py not using absolute_import | |
78 | tests/test-duplicateoptions.py requires print_function |
|
78 | tests/test-duplicateoptions.py requires print_function | |
79 | tests/test-filecache.py not using absolute_import |
|
79 | tests/test-filecache.py not using absolute_import | |
80 | tests/test-filecache.py requires print_function |
|
80 | tests/test-filecache.py requires print_function | |
81 | tests/test-filelog.py not using absolute_import |
|
81 | tests/test-filelog.py not using absolute_import | |
82 | tests/test-filelog.py requires print_function |
|
82 | tests/test-filelog.py requires print_function | |
83 | tests/test-hg-parseurl.py not using absolute_import |
|
83 | tests/test-hg-parseurl.py not using absolute_import | |
84 | tests/test-hg-parseurl.py requires print_function |
|
84 | tests/test-hg-parseurl.py requires print_function | |
85 | tests/test-hgweb-auth.py not using absolute_import |
|
85 | tests/test-hgweb-auth.py not using absolute_import | |
86 | tests/test-hgweb-auth.py requires print_function |
|
86 | tests/test-hgweb-auth.py requires print_function | |
87 | tests/test-hgwebdir-paths.py not using absolute_import |
|
87 | tests/test-hgwebdir-paths.py not using absolute_import | |
88 | tests/test-hybridencode.py not using absolute_import |
|
88 | tests/test-hybridencode.py not using absolute_import | |
89 | tests/test-hybridencode.py requires print_function |
|
89 | tests/test-hybridencode.py requires print_function | |
90 | tests/test-lrucachedict.py not using absolute_import |
|
90 | tests/test-lrucachedict.py not using absolute_import | |
91 | tests/test-lrucachedict.py requires print_function |
|
91 | tests/test-lrucachedict.py requires print_function | |
92 | tests/test-manifest.py not using absolute_import |
|
92 | tests/test-manifest.py not using absolute_import | |
93 | tests/test-minirst.py not using absolute_import |
|
93 | tests/test-minirst.py not using absolute_import | |
94 | tests/test-minirst.py requires print_function |
|
94 | tests/test-minirst.py requires print_function | |
95 | tests/test-parseindex2.py not using absolute_import |
|
95 | tests/test-parseindex2.py not using absolute_import | |
96 | tests/test-parseindex2.py requires print_function |
|
96 | tests/test-parseindex2.py requires print_function | |
97 | tests/test-pathencode.py not using absolute_import |
|
97 | tests/test-pathencode.py not using absolute_import | |
98 | tests/test-pathencode.py requires print_function |
|
98 | tests/test-pathencode.py requires print_function | |
99 | tests/test-propertycache.py not using absolute_import |
|
99 | tests/test-propertycache.py not using absolute_import | |
100 | tests/test-propertycache.py requires print_function |
|
100 | tests/test-propertycache.py requires print_function | |
101 | tests/test-revlog-ancestry.py not using absolute_import |
|
101 | tests/test-revlog-ancestry.py not using absolute_import | |
102 | tests/test-revlog-ancestry.py requires print_function |
|
102 | tests/test-revlog-ancestry.py requires print_function | |
103 | tests/test-run-tests.py not using absolute_import |
|
103 | tests/test-run-tests.py not using absolute_import | |
104 | tests/test-simplemerge.py not using absolute_import |
|
104 | tests/test-simplemerge.py not using absolute_import | |
105 | tests/test-status-inprocess.py not using absolute_import |
|
105 | tests/test-status-inprocess.py not using absolute_import | |
106 | tests/test-status-inprocess.py requires print_function |
|
106 | tests/test-status-inprocess.py requires print_function | |
107 | tests/test-symlink-os-yes-fs-no.py not using absolute_import |
|
107 | tests/test-symlink-os-yes-fs-no.py not using absolute_import | |
108 | tests/test-trusted.py not using absolute_import |
|
108 | tests/test-trusted.py not using absolute_import | |
109 | tests/test-trusted.py requires print_function |
|
109 | tests/test-trusted.py requires print_function | |
110 | tests/test-ui-color.py not using absolute_import |
|
110 | tests/test-ui-color.py not using absolute_import | |
111 | tests/test-ui-color.py requires print_function |
|
111 | tests/test-ui-color.py requires print_function | |
112 | tests/test-ui-config.py not using absolute_import |
|
112 | tests/test-ui-config.py not using absolute_import | |
113 | tests/test-ui-config.py requires print_function |
|
113 | tests/test-ui-config.py requires print_function | |
114 | tests/test-ui-verbosity.py not using absolute_import |
|
114 | tests/test-ui-verbosity.py not using absolute_import | |
115 | tests/test-ui-verbosity.py requires print_function |
|
115 | tests/test-ui-verbosity.py requires print_function | |
116 | tests/test-url.py not using absolute_import |
|
116 | tests/test-url.py not using absolute_import | |
117 | tests/test-url.py requires print_function |
|
117 | tests/test-url.py requires print_function | |
118 | tests/test-walkrepo.py requires print_function |
|
118 | tests/test-walkrepo.py requires print_function | |
119 | tests/test-wireproto.py requires print_function |
|
119 | tests/test-wireproto.py requires print_function | |
120 | tests/tinyproxy.py requires print_function |
|
120 | tests/tinyproxy.py requires print_function | |
121 |
|
121 | |||
122 | #if py3exe |
|
122 | #if py3exe | |
123 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs $PYTHON3 contrib/check-py3-compat.py |
|
123 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs $PYTHON3 contrib/check-py3-compat.py | |
124 | contrib/check-code.py: invalid syntax: (unicode error) 'unicodeescape' codec can't decode bytes in position 18-19: malformed \N character escape (<unknown>, line 106) |
|
124 | contrib/check-code.py: invalid syntax: (unicode error) 'unicodeescape' codec can't decode bytes in position 18-19: malformed \N character escape (<unknown>, line 106) | |
125 | contrib/import-checker.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 569) |
|
125 | contrib/import-checker.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 569) | |
126 | contrib/revsetbenchmarks.py: invalid syntax: invalid syntax (<unknown>, line 186) |
|
126 | contrib/revsetbenchmarks.py: invalid syntax: invalid syntax (<unknown>, line 186) | |
127 | doc/hgmanpage.py: invalid syntax: invalid syntax (<unknown>, line 286) |
|
127 | doc/hgmanpage.py: invalid syntax: invalid syntax (<unknown>, line 286) | |
128 | hgext/acl.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
128 | hgext/acl.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
129 | hgext/automv.py: error importing module: <SyntaxError> invalid syntax (commands.py, line 3324) (line 29) |
|
129 | hgext/automv.py: error importing module: <SyntaxError> invalid syntax (commands.py, line 3324) (line 29) | |
130 |
hgext/blackbox.py: error importing: < |
|
130 | hgext/blackbox.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
131 | hgext/bugzilla.py: error importing module: <ImportError> No module named 'urlparse' (line 284) |
|
131 | hgext/bugzilla.py: error importing module: <ImportError> No module named 'urlparse' (line 284) | |
132 |
hgext/censor.py: error importing: < |
|
132 | hgext/censor.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
133 | hgext/chgserver.py: error importing module: <ImportError> No module named 'SocketServer' (line 43) |
|
133 | hgext/chgserver.py: error importing module: <ImportError> No module named 'SocketServer' (line 43) | |
134 | hgext/children.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
134 | hgext/children.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
135 | hgext/churn.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
135 | hgext/churn.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
136 | hgext/clonebundles.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
136 | hgext/clonebundles.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
137 | hgext/color.py: invalid syntax: invalid syntax (<unknown>, line 551) |
|
137 | hgext/color.py: invalid syntax: invalid syntax (<unknown>, line 551) | |
138 | hgext/convert/bzr.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line 18) |
|
138 | hgext/convert/bzr.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line 18) | |
139 | hgext/convert/common.py: error importing module: <ImportError> No module named 'cPickle' (line 10) |
|
139 | hgext/convert/common.py: error importing module: <ImportError> No module named 'cPickle' (line 10) | |
140 |
hgext/convert/convcmd.py: error importing: < |
|
140 | hgext/convert/convcmd.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
141 | hgext/convert/cvs.py: error importing module: <ImportError> No module named 'cStringIO' (line 9) |
|
141 | hgext/convert/cvs.py: error importing module: <ImportError> No module named 'cStringIO' (line 9) | |
142 | hgext/convert/cvsps.py: error importing module: <ImportError> No module named 'cPickle' (line 9) |
|
142 | hgext/convert/cvsps.py: error importing module: <ImportError> No module named 'cPickle' (line 9) | |
143 | hgext/convert/darcs.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
143 | hgext/convert/darcs.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
144 | hgext/convert/filemap.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line 14) |
|
144 | hgext/convert/filemap.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line 14) | |
145 | hgext/convert/git.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
145 | hgext/convert/git.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
146 | hgext/convert/gnuarch.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
146 | hgext/convert/gnuarch.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
147 | hgext/convert/hg.py: error importing module: <ImportError> No module named 'cStringIO' (line 21) |
|
147 | hgext/convert/hg.py: error importing module: <ImportError> No module named 'cStringIO' (line 21) | |
148 | hgext/convert/monotone.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
148 | hgext/convert/monotone.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
149 | hgext/convert/p4.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
149 | hgext/convert/p4.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
150 | hgext/convert/subversion.py: error importing module: <ImportError> No module named 'cPickle' (line 6) |
|
150 | hgext/convert/subversion.py: error importing module: <ImportError> No module named 'cPickle' (line 6) | |
151 | hgext/convert/transport.py: error importing module: <ImportError> No module named 'svn.client' (line 21) |
|
151 | hgext/convert/transport.py: error importing module: <ImportError> No module named 'svn.client' (line 21) | |
152 | hgext/eol.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
152 | hgext/eol.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
153 |
hgext/extdiff.py: error importing: < |
|
153 | hgext/extdiff.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
154 | hgext/factotum.py: error importing: <ImportError> No module named 'cStringIO' (error at url.py:13) |
|
154 | hgext/factotum.py: error importing: <ImportError> No module named 'cStringIO' (error at url.py:13) | |
155 | hgext/fetch.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
155 | hgext/fetch.py: error importing module: <SyntaxError> invalid syntax (commands.py, line 3324) (line 12) | |
156 | hgext/fsmonitor/state.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
156 | hgext/fsmonitor/state.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
157 | hgext/fsmonitor/watchmanclient.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
157 | hgext/fsmonitor/watchmanclient.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
158 | hgext/gpg.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
158 | hgext/gpg.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
159 | hgext/graphlog.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
159 | hgext/graphlog.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
160 |
hgext/hgcia.py: error importing: < |
|
160 | hgext/hgcia.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
161 | hgext/hgk.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
161 | hgext/hgk.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
162 | hgext/highlight/highlight.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
162 | hgext/highlight/highlight.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
163 | hgext/histedit.py: error importing module: <SyntaxError> invalid syntax (bundle2.py, line 977) (line 177) |
|
163 | hgext/histedit.py: error importing module: <SyntaxError> invalid syntax (bundle2.py, line 977) (line 177) | |
164 | hgext/keyword.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
164 | hgext/keyword.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
165 | hgext/largefiles/basestore.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
165 | hgext/largefiles/basestore.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
166 | hgext/largefiles/lfcommands.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
166 | hgext/largefiles/lfcommands.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
167 |
hgext/largefiles/lfutil.py: error importing: < |
|
167 | hgext/largefiles/lfutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
168 | hgext/largefiles/localstore.py: error importing module: <ImportError> No module named 'lfutil' (line 13) |
|
168 | hgext/largefiles/localstore.py: error importing module: <ImportError> No module named 'lfutil' (line 13) | |
169 |
hgext/largefiles/overrides.py: error importing: < |
|
169 | hgext/largefiles/overrides.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
170 | hgext/largefiles/proto.py: error importing module: <ImportError> No module named 'urllib2' (line 7) |
|
170 | hgext/largefiles/proto.py: error importing module: <ImportError> No module named 'urllib2' (line 7) | |
171 | hgext/largefiles/remotestore.py: error importing module: <ImportError> No module named 'urllib2' (line 9) |
|
171 | hgext/largefiles/remotestore.py: error importing module: <ImportError> No module named 'urllib2' (line 9) | |
172 | hgext/largefiles/reposetup.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
172 | hgext/largefiles/reposetup.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
173 | hgext/largefiles/uisetup.py: error importing module: <SyntaxError> invalid syntax (archival.py, line 234) (line 11) |
|
173 | hgext/largefiles/uisetup.py: error importing module: <SyntaxError> invalid syntax (archival.py, line 234) (line 11) | |
174 | hgext/largefiles/wirestore.py: error importing module: <ImportError> No module named 'lfutil' (line 8) |
|
174 | hgext/largefiles/wirestore.py: error importing module: <ImportError> No module named 'lfutil' (line 8) | |
175 |
hgext/mq.py: error importing: < |
|
175 | hgext/mq.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
176 | hgext/notify.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
176 | hgext/notify.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
177 | hgext/pager.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
177 | hgext/pager.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
178 | hgext/patchbomb.py: error importing module: <ImportError> No module named 'cStringIO' (line 68) |
|
178 | hgext/patchbomb.py: error importing module: <ImportError> No module named 'cStringIO' (line 68) | |
179 | hgext/purge.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
179 | hgext/purge.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
180 |
hgext/rebase.py: error importing: < |
|
180 | hgext/rebase.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
181 | hgext/record.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
181 | hgext/record.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
182 | hgext/relink.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
182 | hgext/relink.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
183 | hgext/schemes.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
183 | hgext/schemes.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
184 | hgext/share.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
184 | hgext/share.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
185 | hgext/shelve.py: error importing module: <SyntaxError> invalid syntax (bundle2.py, line 977) (line 28) |
|
185 | hgext/shelve.py: error importing module: <SyntaxError> invalid syntax (bundle2.py, line 977) (line 28) | |
186 |
hgext/strip.py: error importing: < |
|
186 | hgext/strip.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
187 |
hgext/transplant.py: error importing: < |
|
187 | hgext/transplant.py: error importing: <SyntaxError> invalid syntax (bundle2.py, line 977) (error at bundlerepo.py:23) | |
188 |
hgext/win32text.py: error importing: < |
|
188 | hgext/win32text.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
189 | mercurial/ancestor.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
|||
190 | mercurial/archival.py: invalid syntax: invalid syntax (<unknown>, line 234) |
|
189 | mercurial/archival.py: invalid syntax: invalid syntax (<unknown>, line 234) | |
191 |
mercurial/bookmarks.py: error importing: < |
|
190 | mercurial/bookmarks.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
192 |
mercurial/branchmap.py: error importing: < |
|
191 | mercurial/branchmap.py: error importing: <ImportError> No module named 'Queue' (error at scmutil.py:10) | |
193 | mercurial/bundle2.py: invalid syntax: invalid syntax (<unknown>, line 977) |
|
192 | mercurial/bundle2.py: invalid syntax: invalid syntax (<unknown>, line 977) | |
194 | mercurial/bundlerepo.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
193 | mercurial/bundlerepo.py: error importing module: <SyntaxError> invalid syntax (bundle2.py, line 977) (line 23) | |
195 | mercurial/byterange.py: error importing module: <ImportError> No module named 'urllib2' (line 30) |
|
194 | mercurial/byterange.py: error importing module: <ImportError> No module named 'urllib2' (line 30) | |
196 |
mercurial/changegroup.py: error importing: < |
|
195 | mercurial/changegroup.py: error importing: <ImportError> No module named 'Queue' (error at scmutil.py:10) | |
197 |
mercurial/changelog.py: error importing: < |
|
196 | mercurial/changelog.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
198 | mercurial/cmdutil.py: error importing module: <ImportError> No module named 'cStringIO' (line 10) |
|
197 | mercurial/cmdutil.py: error importing module: <ImportError> No module named 'cStringIO' (line 10) | |
199 | mercurial/commands.py: invalid syntax: invalid syntax (<unknown>, line 3324) |
|
198 | mercurial/commands.py: invalid syntax: invalid syntax (<unknown>, line 3324) | |
200 | mercurial/commandserver.py: error importing module: <ImportError> No module named 'SocketServer' (line 10) |
|
199 | mercurial/commandserver.py: error importing module: <ImportError> No module named 'SocketServer' (line 10) | |
201 | mercurial/config.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
200 | mercurial/config.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
202 |
mercurial/context.py: error importing: < |
|
201 | mercurial/context.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
203 |
mercurial/copies.py: error importing: < |
|
202 | mercurial/copies.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
204 | mercurial/crecord.py: error importing module: <ImportError> No module named 'cStringIO' (line 13) |
|
203 | mercurial/crecord.py: error importing module: <ImportError> No module named 'cStringIO' (line 13) | |
205 |
mercurial/d |
|
204 | mercurial/destutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
206 |
mercurial/d |
|
205 | mercurial/dirstate.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
207 |
mercurial/di |
|
206 | mercurial/discovery.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
208 | mercurial/discovery.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
|||
209 | mercurial/dispatch.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
207 | mercurial/dispatch.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
210 | mercurial/exchange.py: error importing module: <ImportError> No module named 'urllib2' (line 12) |
|
208 | mercurial/exchange.py: error importing module: <ImportError> No module named 'urllib2' (line 12) | |
211 | mercurial/extensions.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
209 | mercurial/extensions.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
212 | mercurial/filelog.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) |
|
210 | mercurial/filelog.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
213 |
mercurial/filemerge.py: error importing: < |
|
211 | mercurial/filemerge.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
214 |
mercurial/fileset.py: error importing: < |
|
212 | mercurial/fileset.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
215 | mercurial/formatter.py: error importing module: <ImportError> No module named 'cPickle' (line 10) |
|
213 | mercurial/formatter.py: error importing module: <ImportError> No module named 'cPickle' (line 10) | |
216 |
mercurial/graphmod.py: error importing: < |
|
214 | mercurial/graphmod.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
217 | mercurial/hbisect.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
|||
218 | mercurial/help.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
215 | mercurial/help.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
219 |
mercurial/hg.py: error importing: < |
|
216 | mercurial/hg.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
220 | mercurial/hgweb/common.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line 11) |
|
217 | mercurial/hgweb/common.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line 11) | |
221 | mercurial/hgweb/hgweb_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 14) |
|
218 | mercurial/hgweb/hgweb_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 14) | |
222 | mercurial/hgweb/hgwebdir_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 15) |
|
219 | mercurial/hgweb/hgwebdir_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 15) | |
223 | mercurial/hgweb/protocol.py: error importing module: <ImportError> No module named 'cStringIO' (line 10) |
|
220 | mercurial/hgweb/protocol.py: error importing module: <ImportError> No module named 'cStringIO' (line 10) | |
224 | mercurial/hgweb/request.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 15) |
|
221 | mercurial/hgweb/request.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 15) | |
225 | mercurial/hgweb/server.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line 11) |
|
222 | mercurial/hgweb/server.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line 11) | |
226 | mercurial/hgweb/webcommands.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 16) |
|
223 | mercurial/hgweb/webcommands.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 16) | |
227 | mercurial/hgweb/webutil.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 16) |
|
224 | mercurial/hgweb/webutil.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 16) | |
228 | mercurial/hgweb/wsgicgi.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 16) |
|
225 | mercurial/hgweb/wsgicgi.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line 16) | |
229 | mercurial/hook.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
226 | mercurial/hook.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
230 | mercurial/httpclient/_readers.py: error importing module: <ImportError> No module named 'httplib' (line 36) |
|
227 | mercurial/httpclient/_readers.py: error importing module: <ImportError> No module named 'httplib' (line 36) | |
231 | mercurial/httpconnection.py: error importing module: <ImportError> No module named 'urllib2' (line 17) |
|
228 | mercurial/httpconnection.py: error importing module: <ImportError> No module named 'urllib2' (line 17) | |
232 | mercurial/httppeer.py: error importing module: <ImportError> No module named 'httplib' (line 12) |
|
229 | mercurial/httppeer.py: error importing module: <ImportError> No module named 'httplib' (line 12) | |
233 | mercurial/keepalive.py: error importing module: <ImportError> No module named 'httplib' (line 113) |
|
230 | mercurial/keepalive.py: error importing module: <ImportError> No module named 'httplib' (line 113) | |
234 |
mercurial/localrepo.py: error importing: < |
|
231 | mercurial/localrepo.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
235 | mercurial/lock.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
232 | mercurial/lock.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
236 | mercurial/mail.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
233 | mercurial/mail.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
237 | mercurial/manifest.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) |
|
234 | mercurial/manifest.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
238 | mercurial/match.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
235 | mercurial/match.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
239 | mercurial/mdiff.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) |
|
236 | mercurial/mdiff.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
240 |
mercurial/merge.py: error importing: < |
|
237 | mercurial/merge.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
241 | mercurial/minirst.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
238 | mercurial/minirst.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
242 |
mercurial/namespaces.py: error importing: < |
|
239 | mercurial/namespaces.py: error importing: <ImportError> No module named 'cStringIO' (error at patch.py:11) | |
243 | mercurial/node.py: error importing module: <TypeError> a bytes-like object is required, not 'str' (line 18) |
|
240 | mercurial/obsolete.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
244 | mercurial/obsolete.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
|||
245 | mercurial/patch.py: error importing module: <ImportError> No module named 'cStringIO' (line 11) |
|
241 | mercurial/patch.py: error importing module: <ImportError> No module named 'cStringIO' (line 11) | |
246 | mercurial/pathutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
242 | mercurial/pathutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
247 | mercurial/peer.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
243 | mercurial/peer.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
248 | mercurial/phases.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
|||
249 | mercurial/pure/mpatch.py: error importing module: <ImportError> No module named 'cStringIO' (line 10) |
|
244 | mercurial/pure/mpatch.py: error importing module: <ImportError> No module named 'cStringIO' (line 10) | |
250 | mercurial/pure/parsers.py: error importing module: <ImportError> No module named 'cStringIO' (line 10) |
|
245 | mercurial/pure/parsers.py: error importing module: <ImportError> No module named 'cStringIO' (line 10) | |
251 |
mercurial/pushkey.py: error importing: < |
|
246 | mercurial/pushkey.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
252 |
mercurial/pvec.py: error importing: < |
|
247 | mercurial/pvec.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
253 | mercurial/registrar.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
248 | mercurial/registrar.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
254 | mercurial/repair.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
249 | mercurial/repair.py: error importing module: <SyntaxError> invalid syntax (bundle2.py, line 977) (line 15) | |
255 |
mercurial/repoview.py: error importing: < |
|
250 | mercurial/repoview.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
256 |
mercurial/revlog.py: error importing: < |
|
251 | mercurial/revlog.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
257 |
mercurial/revset.py: error importing: < |
|
252 | mercurial/revset.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
258 | mercurial/scmutil.py: error importing module: <ImportError> No module named 'Queue' (line 10) |
|
253 | mercurial/scmutil.py: error importing module: <ImportError> No module named 'Queue' (line 10) | |
259 | mercurial/scmwindows.py: error importing module: <ImportError> No module named '_winreg' (line 3) |
|
254 | mercurial/scmwindows.py: error importing module: <ImportError> No module named '_winreg' (line 3) | |
260 | mercurial/setdiscovery.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
|||
261 | mercurial/similar.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) |
|
255 | mercurial/similar.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
262 | mercurial/simplemerge.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) |
|
256 | mercurial/simplemerge.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
263 | mercurial/sshpeer.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
257 | mercurial/sshpeer.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
264 | mercurial/sshserver.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
258 | mercurial/sshserver.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
265 | mercurial/sslutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
259 | mercurial/sslutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
266 | mercurial/statichttprepo.py: error importing module: <ImportError> No module named 'urllib2' (line 15) |
|
260 | mercurial/statichttprepo.py: error importing module: <ImportError> No module named 'urllib2' (line 15) | |
267 | mercurial/store.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
261 | mercurial/store.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
268 |
mercurial/streamclone.py: error importing: < |
|
262 | mercurial/streamclone.py: error importing: <ImportError> No module named 'Queue' (error at scmutil.py:10) | |
269 | mercurial/subrepo.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) |
|
263 | mercurial/subrepo.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:10) | |
270 |
mercurial/tagmerge.py: error importing: < |
|
264 | mercurial/tagmerge.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
271 |
mercurial/tags.py: error importing: < |
|
265 | mercurial/tags.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
272 |
mercurial/templatefilters.py: error importing: < |
|
266 | mercurial/templatefilters.py: error importing: <ImportError> No module named 'cStringIO' (error at patch.py:11) | |
273 |
mercurial/templatekw.py: error importing: < |
|
267 | mercurial/templatekw.py: error importing: <ImportError> No module named 'cStringIO' (error at patch.py:11) | |
274 | mercurial/templater.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
268 | mercurial/templater.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
275 | mercurial/transaction.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
269 | mercurial/transaction.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
276 |
mercurial/ |
|
270 | mercurial/ui.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
277 |
mercurial/ui.py: error importing: < |
|
271 | mercurial/unionrepo.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
278 | mercurial/unionrepo.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
|||
279 | mercurial/url.py: error importing module: <ImportError> No module named 'cStringIO' (line 13) |
|
272 | mercurial/url.py: error importing module: <ImportError> No module named 'cStringIO' (line 13) | |
280 | mercurial/util.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) |
|
273 | mercurial/util.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:10) | |
281 |
mercurial/verify.py: error importing: < |
|
274 | mercurial/verify.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:10) | |
282 | mercurial/win32.py: error importing module: <ImportError> No module named 'msvcrt' (line 12) |
|
275 | mercurial/win32.py: error importing module: <ImportError> No module named 'msvcrt' (line 12) | |
283 | mercurial/windows.py: error importing module: <ImportError> No module named '_winreg' (line 10) |
|
276 | mercurial/windows.py: error importing module: <ImportError> No module named '_winreg' (line 10) | |
284 | mercurial/wireproto.py: error importing: <TypeError> a bytes-like object is required, not 'str' (error at node.py:18) |
|
277 | mercurial/wireproto.py: error importing module: <SyntaxError> invalid syntax (bundle2.py, line 977) (line 22) | |
285 | tests/filterpyflakes.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 61) |
|
278 | tests/filterpyflakes.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 61) | |
286 | tests/generate-working-copy-states.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 69) |
|
279 | tests/generate-working-copy-states.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 69) | |
287 | tests/get-with-headers.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 44) |
|
280 | tests/get-with-headers.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 44) | |
288 | tests/readlink.py: invalid syntax: invalid syntax (<unknown>, line 7) |
|
281 | tests/readlink.py: invalid syntax: invalid syntax (<unknown>, line 7) | |
289 | tests/seq.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 23) |
|
282 | tests/seq.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 23) | |
290 | tests/silenttestrunner.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 11) |
|
283 | tests/silenttestrunner.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 11) | |
291 | tests/test-ancestor.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 187) |
|
284 | tests/test-ancestor.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 187) | |
292 | tests/test-batching.py: invalid syntax: invalid syntax (<unknown>, line 34) |
|
285 | tests/test-batching.py: invalid syntax: invalid syntax (<unknown>, line 34) | |
293 | tests/test-bdiff.py: invalid syntax: invalid syntax (<unknown>, line 10) |
|
286 | tests/test-bdiff.py: invalid syntax: invalid syntax (<unknown>, line 10) | |
294 | tests/test-context.py: invalid syntax: invalid syntax (<unknown>, line 21) |
|
287 | tests/test-context.py: invalid syntax: invalid syntax (<unknown>, line 21) | |
295 | tests/test-demandimport.py: invalid syntax: invalid syntax (<unknown>, line 26) |
|
288 | tests/test-demandimport.py: invalid syntax: invalid syntax (<unknown>, line 26) | |
296 | tests/test-duplicateoptions.py: invalid syntax: invalid syntax (<unknown>, line 34) |
|
289 | tests/test-duplicateoptions.py: invalid syntax: invalid syntax (<unknown>, line 34) | |
297 | tests/test-filecache.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 23) |
|
290 | tests/test-filecache.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 23) | |
298 | tests/test-filelog.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 33) |
|
291 | tests/test-filelog.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 33) | |
299 | tests/test-hg-parseurl.py: invalid syntax: invalid syntax (<unknown>, line 4) |
|
292 | tests/test-hg-parseurl.py: invalid syntax: invalid syntax (<unknown>, line 4) | |
300 | tests/test-hgweb-auth.py: invalid syntax: invalid syntax (<unknown>, line 24) |
|
293 | tests/test-hgweb-auth.py: invalid syntax: invalid syntax (<unknown>, line 24) | |
301 | tests/test-hybridencode.py: invalid syntax: invalid syntax (<unknown>, line 5) |
|
294 | tests/test-hybridencode.py: invalid syntax: invalid syntax (<unknown>, line 5) | |
302 | tests/test-lrucachedict.py: invalid syntax: invalid syntax (<unknown>, line 6) |
|
295 | tests/test-lrucachedict.py: invalid syntax: invalid syntax (<unknown>, line 6) | |
303 | tests/test-minirst.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 6) |
|
296 | tests/test-minirst.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 6) | |
304 | tests/test-parseindex2.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 173) |
|
297 | tests/test-parseindex2.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 173) | |
305 | tests/test-propertycache.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 50) |
|
298 | tests/test-propertycache.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 50) | |
306 | tests/test-revlog-ancestry.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 49) |
|
299 | tests/test-revlog-ancestry.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 49) | |
307 | tests/test-status-inprocess.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 8) |
|
300 | tests/test-status-inprocess.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 8) | |
308 | tests/test-trusted.py: invalid syntax: invalid syntax (<unknown>, line 60) |
|
301 | tests/test-trusted.py: invalid syntax: invalid syntax (<unknown>, line 60) | |
309 | tests/test-ui-color.py: invalid syntax: invalid syntax (<unknown>, line 11) |
|
302 | tests/test-ui-color.py: invalid syntax: invalid syntax (<unknown>, line 11) | |
310 | tests/test-ui-config.py: invalid syntax: invalid syntax (<unknown>, line 32) |
|
303 | tests/test-ui-config.py: invalid syntax: invalid syntax (<unknown>, line 32) | |
311 | tests/test-ui-verbosity.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 9) |
|
304 | tests/test-ui-verbosity.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 9) | |
312 | tests/test-walkrepo.py: invalid syntax: invalid syntax (<unknown>, line 37) |
|
305 | tests/test-walkrepo.py: invalid syntax: invalid syntax (<unknown>, line 37) | |
313 | tests/test-wireproto.py: invalid syntax: invalid syntax (<unknown>, line 55) |
|
306 | tests/test-wireproto.py: invalid syntax: invalid syntax (<unknown>, line 55) | |
314 | tests/tinyproxy.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 53) |
|
307 | tests/tinyproxy.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line 53) | |
315 |
|
308 | |||
316 | #endif |
|
309 | #endif |
General Comments 0
You need to be logged in to leave comments.
Login now