##// END OF EJS Templates
py3: use print_function in filterpyflakes.py
Robert Stanca -
r28724:cf339d6a default
parent child Browse files
Show More
@@ -1,61 +1,61 b''
1 1 #!/usr/bin/env python
2 2
3 3 # Filter output by pyflakes to control which warnings we check
4 4
5 from __future__ import absolute_import
5 from __future__ import absolute_import, print_function
6 6
7 7 import re
8 8 import sys
9 9
10 10 def makekey(typeandline):
11 11 """
12 12 for sorting lines by: msgtype, path/to/file, lineno, message
13 13
14 14 typeandline is a sequence of a message type and the entire message line
15 15 the message line format is path/to/file:line: message
16 16
17 17 >>> makekey((3, 'example.py:36: any message'))
18 18 (3, 'example.py', 36, ' any message')
19 19 >>> makekey((7, 'path/to/file.py:68: dummy message'))
20 20 (7, 'path/to/file.py', 68, ' dummy message')
21 21 >>> makekey((2, 'fn:88: m')) > makekey((2, 'fn:9: m'))
22 22 True
23 23 """
24 24
25 25 msgtype, line = typeandline
26 26 fname, line, message = line.split(":", 2)
27 27 # line as int for ordering 9 before 88
28 28 return msgtype, fname, int(line), message
29 29
30 30
31 31 lines = []
32 32 for line in sys.stdin:
33 33 # We whitelist tests (see more messages in pyflakes.messages)
34 34 pats = [
35 35 (r"imported but unused", None),
36 36 (r"local variable '.*' is assigned to but never used", None),
37 37 (r"unable to detect undefined names", None),
38 38 (r"undefined name '.*'",
39 39 r"undefined name '(WindowsError|memoryview)'")
40 40 ]
41 41
42 42 for msgtype, (pat, excl) in enumerate(pats):
43 43 if re.search(pat, line) and (not excl or not re.search(excl, line)):
44 44 break # pattern matches
45 45 else:
46 46 continue # no pattern matched, next line
47 47 fn = line.split(':', 1)[0]
48 48 f = open(fn)
49 49 data = f.read()
50 50 f.close()
51 51 if 'no-' 'check-code' in data:
52 52 continue
53 53 lines.append((msgtype, line))
54 54
55 55 for msgtype, line in sorted(lines, key=makekey):
56 56 sys.stdout.write(line)
57 print
57 print()
58 58
59 59 # self test of "undefined name" detection for other than 'memoryview'
60 60 if False:
61 print undefinedname
61 print(undefinedname)
@@ -1,285 +1,283 b''
1 1 #require test-repo
2 2
3 3 $ cd "$TESTDIR"/..
4 4
5 5 $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py
6 6 doc/check-seclevel.py not using absolute_import
7 7 doc/gendoc.py not using absolute_import
8 8 doc/hgmanpage.py not using absolute_import
9 9 hgext/color.py not using absolute_import
10 10 hgext/eol.py not using absolute_import
11 11 hgext/extdiff.py not using absolute_import
12 12 hgext/factotum.py not using absolute_import
13 13 hgext/fetch.py not using absolute_import
14 14 hgext/fsmonitor/pywatchman/__init__.py not using absolute_import
15 15 hgext/fsmonitor/pywatchman/__init__.py requires print_function
16 16 hgext/fsmonitor/pywatchman/capabilities.py not using absolute_import
17 17 hgext/fsmonitor/pywatchman/pybser.py not using absolute_import
18 18 hgext/gpg.py not using absolute_import
19 19 hgext/graphlog.py not using absolute_import
20 20 hgext/hgcia.py not using absolute_import
21 21 hgext/hgk.py not using absolute_import
22 22 hgext/highlight/__init__.py not using absolute_import
23 23 hgext/highlight/highlight.py not using absolute_import
24 24 hgext/histedit.py not using absolute_import
25 25 hgext/largefiles/__init__.py not using absolute_import
26 26 hgext/largefiles/basestore.py not using absolute_import
27 27 hgext/largefiles/lfcommands.py not using absolute_import
28 28 hgext/largefiles/lfutil.py not using absolute_import
29 29 hgext/largefiles/localstore.py not using absolute_import
30 30 hgext/largefiles/overrides.py not using absolute_import
31 31 hgext/largefiles/proto.py not using absolute_import
32 32 hgext/largefiles/remotestore.py not using absolute_import
33 33 hgext/largefiles/reposetup.py not using absolute_import
34 34 hgext/largefiles/uisetup.py not using absolute_import
35 35 hgext/largefiles/wirestore.py not using absolute_import
36 36 hgext/mq.py not using absolute_import
37 37 hgext/rebase.py not using absolute_import
38 38 hgext/share.py not using absolute_import
39 39 hgext/win32text.py not using absolute_import
40 40 i18n/check-translation.py not using absolute_import
41 41 i18n/polib.py not using absolute_import
42 42 setup.py not using absolute_import
43 tests/filterpyflakes.py requires print_function
44 43 tests/generate-working-copy-states.py requires print_function
45 44 tests/get-with-headers.py requires print_function
46 45 tests/heredoctest.py requires print_function
47 46 tests/hypothesishelpers.py not using absolute_import
48 47 tests/hypothesishelpers.py requires print_function
49 48 tests/killdaemons.py not using absolute_import
50 49 tests/md5sum.py not using absolute_import
51 50 tests/mockblackbox.py not using absolute_import
52 51 tests/printenv.py not using absolute_import
53 52 tests/readlink.py not using absolute_import
54 53 tests/readlink.py requires print_function
55 54 tests/revlog-formatv0.py not using absolute_import
56 55 tests/run-tests.py not using absolute_import
57 56 tests/silenttestrunner.py not using absolute_import
58 57 tests/silenttestrunner.py requires print_function
59 58 tests/sitecustomize.py not using absolute_import
60 59 tests/svn-safe-append.py not using absolute_import
61 60 tests/svnxml.py not using absolute_import
62 61 tests/test-atomictempfile.py not using absolute_import
63 62 tests/test-batching.py not using absolute_import
64 63 tests/test-batching.py requires print_function
65 64 tests/test-bdiff.py not using absolute_import
66 65 tests/test-bdiff.py requires print_function
67 66 tests/test-context.py not using absolute_import
68 67 tests/test-context.py requires print_function
69 68 tests/test-demandimport.py not using absolute_import
70 69 tests/test-demandimport.py requires print_function
71 70 tests/test-doctest.py not using absolute_import
72 71 tests/test-duplicateoptions.py not using absolute_import
73 72 tests/test-duplicateoptions.py requires print_function
74 73 tests/test-filecache.py not using absolute_import
75 74 tests/test-filecache.py requires print_function
76 75 tests/test-filelog.py not using absolute_import
77 76 tests/test-filelog.py requires print_function
78 77 tests/test-hg-parseurl.py not using absolute_import
79 78 tests/test-hg-parseurl.py requires print_function
80 79 tests/test-hgweb-auth.py not using absolute_import
81 80 tests/test-hgweb-auth.py requires print_function
82 81 tests/test-hgwebdir-paths.py not using absolute_import
83 82 tests/test-hybridencode.py not using absolute_import
84 83 tests/test-hybridencode.py requires print_function
85 84 tests/test-lrucachedict.py not using absolute_import
86 85 tests/test-lrucachedict.py requires print_function
87 86 tests/test-manifest.py not using absolute_import
88 87 tests/test-minirst.py not using absolute_import
89 88 tests/test-minirst.py requires print_function
90 89 tests/test-parseindex2.py not using absolute_import
91 90 tests/test-parseindex2.py requires print_function
92 91 tests/test-pathencode.py not using absolute_import
93 92 tests/test-pathencode.py requires print_function
94 93 tests/test-propertycache.py not using absolute_import
95 94 tests/test-propertycache.py requires print_function
96 95 tests/test-revlog-ancestry.py not using absolute_import
97 96 tests/test-revlog-ancestry.py requires print_function
98 97 tests/test-run-tests.py not using absolute_import
99 98 tests/test-simplemerge.py not using absolute_import
100 99 tests/test-status-inprocess.py not using absolute_import
101 100 tests/test-status-inprocess.py requires print_function
102 101 tests/test-symlink-os-yes-fs-no.py not using absolute_import
103 102 tests/test-trusted.py not using absolute_import
104 103 tests/test-trusted.py requires print_function
105 104 tests/test-ui-color.py not using absolute_import
106 105 tests/test-url.py not using absolute_import
107 106
108 107 #if py3exe
109 108 $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs $PYTHON3 contrib/check-py3-compat.py
110 109 contrib/check-code.py: invalid syntax: (unicode error) 'unicodeescape' codec can't decode bytes in position *-*: malformed \N character escape (<unknown>, line *) (glob)
111 110 doc/hgmanpage.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
112 111 hgext/acl.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
113 112 hgext/automv.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob)
114 113 hgext/blackbox.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
115 114 hgext/bugzilla.py: error importing module: <ImportError> No module named 'urlparse' (line *) (glob)
116 115 hgext/censor.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
117 116 hgext/chgserver.py: error importing module: <ImportError> No module named 'SocketServer' (line *) (glob)
118 117 hgext/children.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
119 118 hgext/churn.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
120 119 hgext/clonebundles.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
121 120 hgext/color.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
122 121 hgext/convert/bzr.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob)
123 122 hgext/convert/common.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob)
124 123 hgext/convert/convcmd.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
125 124 hgext/convert/cvs.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
126 125 hgext/convert/cvsps.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob)
127 126 hgext/convert/darcs.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
128 127 hgext/convert/filemap.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob)
129 128 hgext/convert/git.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
130 129 hgext/convert/gnuarch.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
131 130 hgext/convert/hg.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
132 131 hgext/convert/monotone.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
133 132 hgext/convert/p*.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
134 133 hgext/convert/subversion.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob)
135 134 hgext/convert/transport.py: error importing module: <ImportError> No module named 'svn.client' (line *) (glob)
136 135 hgext/eol.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
137 136 hgext/extdiff.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
138 137 hgext/factotum.py: error importing: <ImportError> No module named 'cStringIO' (error at url.py:*) (glob)
139 138 hgext/fetch.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob)
140 139 hgext/fsmonitor/state.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
141 140 hgext/fsmonitor/watchmanclient.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
142 141 hgext/gpg.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
143 142 hgext/graphlog.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
144 143 hgext/hgcia.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
145 144 hgext/hgk.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
146 145 hgext/highlight/highlight.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
147 146 hgext/histedit.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob)
148 147 hgext/keyword.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
149 148 hgext/largefiles/basestore.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
150 149 hgext/largefiles/lfcommands.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
151 150 hgext/largefiles/lfutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
152 151 hgext/largefiles/localstore.py: error importing module: <ImportError> No module named 'lfutil' (line *) (glob)
153 152 hgext/largefiles/overrides.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
154 153 hgext/largefiles/proto.py: error importing module: <ImportError> No module named 'urllib2' (line *) (glob)
155 154 hgext/largefiles/remotestore.py: error importing module: <ImportError> No module named 'urllib2' (line *) (glob)
156 155 hgext/largefiles/reposetup.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
157 156 hgext/largefiles/uisetup.py: error importing module: <SyntaxError> invalid syntax (archival.py, line *) (line *) (glob)
158 157 hgext/largefiles/wirestore.py: error importing module: <ImportError> No module named 'lfutil' (line *) (glob)
159 158 hgext/mq.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
160 159 hgext/notify.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
161 160 hgext/pager.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
162 161 hgext/patchbomb.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
163 162 hgext/purge.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
164 163 hgext/rebase.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
165 164 hgext/record.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
166 165 hgext/relink.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
167 166 hgext/schemes.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
168 167 hgext/share.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
169 168 hgext/shelve.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob)
170 169 hgext/strip.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
171 170 hgext/transplant.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob)
172 171 hgext/win*text.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
173 172 mercurial/archival.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
174 173 mercurial/bookmarks.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
175 174 mercurial/branchmap.py: error importing: <ImportError> No module named 'Queue' (error at scmutil.py:*) (glob)
176 175 mercurial/bundle*.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
177 176 mercurial/bundlerepo.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob)
178 177 mercurial/byterange.py: error importing module: <ImportError> No module named 'urllib2' (line *) (glob)
179 178 mercurial/changegroup.py: error importing: <ImportError> No module named 'Queue' (error at scmutil.py:*) (glob)
180 179 mercurial/changelog.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
181 180 mercurial/cmdutil.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
182 181 mercurial/commands.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
183 182 mercurial/commandserver.py: error importing module: <ImportError> No module named 'SocketServer' (line *) (glob)
184 183 mercurial/config.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
185 184 mercurial/context.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
186 185 mercurial/copies.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
187 186 mercurial/crecord.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
188 187 mercurial/destutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
189 188 mercurial/dirstate.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
190 189 mercurial/discovery.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
191 190 mercurial/dispatch.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
192 191 mercurial/exchange.py: error importing module: <ImportError> No module named 'urllib2' (line *) (glob)
193 192 mercurial/extensions.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
194 193 mercurial/filelog.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
195 194 mercurial/filemerge.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
196 195 mercurial/fileset.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
197 196 mercurial/formatter.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob)
198 197 mercurial/graphmod.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
199 198 mercurial/help.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
200 199 mercurial/hg.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
201 200 mercurial/hgweb/common.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line *) (glob)
202 201 mercurial/hgweb/hgweb_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob)
203 202 mercurial/hgweb/hgwebdir_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob)
204 203 mercurial/hgweb/protocol.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
205 204 mercurial/hgweb/request.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob)
206 205 mercurial/hgweb/server.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line *) (glob)
207 206 mercurial/hgweb/webcommands.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob)
208 207 mercurial/hgweb/webutil.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob)
209 208 mercurial/hgweb/wsgicgi.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob)
210 209 mercurial/hook.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
211 210 mercurial/httpclient/_readers.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob)
212 211 mercurial/httpconnection.py: error importing module: <ImportError> No module named 'urllib2' (line *) (glob)
213 212 mercurial/httppeer.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob)
214 213 mercurial/keepalive.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob)
215 214 mercurial/localrepo.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
216 215 mercurial/lock.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
217 216 mercurial/mail.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
218 217 mercurial/manifest.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
219 218 mercurial/match.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
220 219 mercurial/mdiff.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
221 220 mercurial/merge.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
222 221 mercurial/minirst.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
223 222 mercurial/namespaces.py: error importing: <ImportError> No module named 'cStringIO' (error at patch.py:*) (glob)
224 223 mercurial/obsolete.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
225 224 mercurial/patch.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
226 225 mercurial/pathutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
227 226 mercurial/peer.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
228 227 mercurial/pure/mpatch.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
229 228 mercurial/pure/parsers.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
230 229 mercurial/pushkey.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
231 230 mercurial/pvec.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
232 231 mercurial/registrar.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
233 232 mercurial/repair.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob)
234 233 mercurial/repoview.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
235 234 mercurial/revlog.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
236 235 mercurial/revset.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
237 236 mercurial/scmutil.py: error importing module: <ImportError> No module named 'Queue' (line *) (glob)
238 237 mercurial/scmwindows.py: error importing module: <ImportError> No module named '_winreg' (line *) (glob)
239 238 mercurial/similar.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
240 239 mercurial/simplemerge.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
241 240 mercurial/sshpeer.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
242 241 mercurial/sshserver.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
243 242 mercurial/sslutil.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
244 243 mercurial/statichttprepo.py: error importing module: <ImportError> No module named 'urllib2' (line *) (glob)
245 244 mercurial/store.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
246 245 mercurial/streamclone.py: error importing: <ImportError> No module named 'Queue' (error at scmutil.py:*) (glob)
247 246 mercurial/subrepo.py: error importing: <ImportError> No module named 'cStringIO' (error at cmdutil.py:*) (glob)
248 247 mercurial/tagmerge.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
249 248 mercurial/tags.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
250 249 mercurial/templatefilters.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
251 250 mercurial/templatekw.py: error importing: <ImportError> No module named 'cStringIO' (error at patch.py:*) (glob)
252 251 mercurial/templater.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
253 252 mercurial/transaction.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
254 253 mercurial/ui.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
255 254 mercurial/unionrepo.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
256 255 mercurial/url.py: error importing module: <ImportError> No module named 'cStringIO' (line *) (glob)
257 256 mercurial/util.py: error importing: <ImportError> No module named 'cStringIO' (error at parsers.py:*) (glob)
258 257 mercurial/verify.py: error importing: <ImportError> No module named 'cStringIO' (error at mpatch.py:*) (glob)
259 258 mercurial/win*.py: error importing module: <ImportError> No module named 'msvcrt' (line *) (glob)
260 259 mercurial/windows.py: error importing module: <ImportError> No module named '_winreg' (line *) (glob)
261 260 mercurial/wireproto.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob)
262 tests/filterpyflakes.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
263 261 tests/generate-working-copy-states.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
264 262 tests/get-with-headers.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
265 263 tests/readlink.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
266 264 tests/silenttestrunner.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
267 265 tests/test-batching.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
268 266 tests/test-bdiff.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
269 267 tests/test-context.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
270 268 tests/test-demandimport.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
271 269 tests/test-duplicateoptions.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
272 270 tests/test-filecache.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
273 271 tests/test-filelog.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
274 272 tests/test-hg-parseurl.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
275 273 tests/test-hgweb-auth.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
276 274 tests/test-hybridencode.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
277 275 tests/test-lrucachedict.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
278 276 tests/test-minirst.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
279 277 tests/test-parseindex*.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
280 278 tests/test-propertycache.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
281 279 tests/test-revlog-ancestry.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
282 280 tests/test-status-inprocess.py: invalid syntax: Missing parentheses in call to 'print' (<unknown>, line *) (glob)
283 281 tests/test-trusted.py: invalid syntax: invalid syntax (<unknown>, line *) (glob)
284 282
285 283 #endif
General Comments 0
You need to be logged in to leave comments. Login now