bee_python 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/build/README +1 -1
- data/lib/bee_task_python.rb +21 -14
- data/test/tc_bee_task_python.rb +0 -0
- metadata +423 -423
data/build/README
CHANGED
data/lib/bee_task_python.rb
CHANGED
@@ -28,7 +28,9 @@ module Bee
|
|
28
28
|
for file in files
|
29
29
|
puts "Compiling Python source file '#{file}'" if
|
30
30
|
@build.listener.verbose
|
31
|
-
|
31
|
+
command = "python #{script} #{file}"
|
32
|
+
puts "Running command: '#{command}'" if @build.listener.verbose
|
33
|
+
ok = system(command)
|
32
34
|
error "Error compiling Python source file '#{file}'" unless ok
|
33
35
|
end
|
34
36
|
end
|
@@ -104,6 +106,7 @@ module Bee
|
|
104
106
|
command += " #{options}" if options
|
105
107
|
command += " --only" if only
|
106
108
|
command += " #{files.join(' ')}"
|
109
|
+
puts "Running command: '#{command}'" if @build.listener.verbose
|
107
110
|
ok = system(command)
|
108
111
|
error "Error checking Python source files" unless ok or lenient
|
109
112
|
end
|
@@ -183,6 +186,7 @@ module Bee
|
|
183
186
|
command += " --rcfile=#{config}" if config
|
184
187
|
command += " #{options}" if options
|
185
188
|
command += " #{files.join(' ')}"
|
189
|
+
puts "Running command: '#{command}'" if @build.listener.verbose
|
186
190
|
ok = system(command)
|
187
191
|
error "Error checking Python source files" unless ok or lenient
|
188
192
|
end
|
@@ -207,7 +211,8 @@ module Bee
|
|
207
211
|
:src => { :mandatory => true, :type => :string_or_array },
|
208
212
|
:dest => { :mandatory => true, :type => :string },
|
209
213
|
:options => { :mandatory => false, :type => :string },
|
210
|
-
:installed => { :mandatory => false, :type => :boolean,
|
214
|
+
:installed => { :mandatory => false, :type => :boolean,
|
215
|
+
:default => false }
|
211
216
|
}
|
212
217
|
check_parameters(params, params_desc)
|
213
218
|
src = params[:src]
|
@@ -238,6 +243,7 @@ module Bee
|
|
238
243
|
command += " -o #{dest}"
|
239
244
|
command += " #{options}" if options
|
240
245
|
command += " #{files.join(' ')}"
|
246
|
+
puts "Running command: '#{command}'" if @build.listener.verbose
|
241
247
|
ok = system(command)
|
242
248
|
error "Error generating documentation for Python source files" unless
|
243
249
|
ok
|
@@ -262,6 +268,7 @@ module Bee
|
|
262
268
|
script = File.join(File.expand_path(File.dirname(__FILE__)),
|
263
269
|
'..', 'tools', 'test', 'suite.py')
|
264
270
|
command = "python #{script} #{files.join(' ')}"
|
271
|
+
puts "Running command: '#{command}'" if @build.listener.verbose
|
265
272
|
ok = system(command)
|
266
273
|
error "Error running Python test(s)" unless ok
|
267
274
|
end
|
@@ -336,14 +343,7 @@ module Bee
|
|
336
343
|
end
|
337
344
|
end
|
338
345
|
# build the python path
|
339
|
-
|
340
|
-
if ENV['PYTHONPATH']
|
341
|
-
ENV['PYTHONPATH'] = ENV['PYTHONPATH'] + File::PATH_SEPARATOR +
|
342
|
-
path.join(File::PATH_SEPARATOR)
|
343
|
-
else
|
344
|
-
ENV['PYTHONPATH'] = path.join(File::PATH_SEPARATOR)
|
345
|
-
end
|
346
|
-
end
|
346
|
+
add_python_path(path)
|
347
347
|
# run coverage command
|
348
348
|
puts "Generating coverage report for #{test_files.length} test(s)..."
|
349
349
|
coverage = "#{File.dirname(__FILE__)}/../tools/coverage/coverage.py"
|
@@ -353,6 +353,7 @@ module Bee
|
|
353
353
|
begin
|
354
354
|
Dir.chdir(dir)
|
355
355
|
command = "python #{coverage} -x -f #{data} #{test_file}"
|
356
|
+
puts "Running command: '#{command}'" if @build.listener.verbose
|
356
357
|
system(command) || error("Error running coverage report")
|
357
358
|
ensure
|
358
359
|
Dir.chdir(prev_dir)
|
@@ -362,9 +363,11 @@ module Bee
|
|
362
363
|
command = "python #{coverage} -r -f #{data} -m #{sources} > #{report}"
|
363
364
|
system(command) || error("Error generating coverage report")
|
364
365
|
command = "python #{coverage} -a -f #{data} -d #{dest} #{sources}"
|
366
|
+
puts "Running command: '#{command}'" if @build.listener.verbose
|
365
367
|
system(command) || error("Error generating coverage report")
|
366
368
|
else
|
367
369
|
command = "python #{coverage} -r -f #{data} -m #{sources}"
|
370
|
+
puts "Running command: '#{command}'" if @build.listener.verbose
|
368
371
|
system(command) || error("Error generating coverage report")
|
369
372
|
end
|
370
373
|
end
|
@@ -374,12 +377,16 @@ module Bee
|
|
374
377
|
# Add directories to the Python path environment variable.
|
375
378
|
# - dirs: directory (string) or list of directories to add to path.
|
376
379
|
def add_python_path(dirs)
|
377
|
-
dirs
|
378
|
-
|
380
|
+
if dirs and dirs.length > 0
|
381
|
+
dirs = Array(dirs)
|
382
|
+
puts "Adding to PYTHONPATH: '#{dirs.join(',')}'" if
|
383
|
+
@build.listener.verbose
|
384
|
+
if ENV['PYTHONPATH']
|
379
385
|
ENV['PYTHONPATH'] = dirs.join(File::PATH_SEPARATOR) +
|
380
|
-
|
381
|
-
|
386
|
+
File::PATH_SEPARATOR + ENV['PYTHONPATH'] if dirs.length > 0
|
387
|
+
else
|
382
388
|
ENV['PYTHONPATH'] = dirs.join(File::PATH_SEPARATOR)
|
389
|
+
end
|
383
390
|
end
|
384
391
|
end
|
385
392
|
|
data/test/tc_bee_task_python.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bee_python
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michel Casabianca
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-
|
12
|
+
date: 2010-11-04 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -34,504 +34,504 @@ extra_rdoc_files:
|
|
34
34
|
files:
|
35
35
|
- lib/bee_task_python.rb
|
36
36
|
- test/build.yml
|
37
|
-
- test/tc_bee_task_python.rb
|
38
37
|
- test/test_build.rb
|
39
38
|
- test/test_build_listener.rb
|
40
39
|
- test/ts_bee_python.rb
|
41
|
-
-
|
42
|
-
- egg/
|
40
|
+
- test/tc_bee_task_python.rb
|
41
|
+
- egg/script.yml
|
42
|
+
- egg/test.yml
|
43
|
+
- egg/soap.yml
|
44
|
+
- egg/test/test.py
|
45
|
+
- egg/script/script.py
|
46
|
+
- egg/script/build.erb
|
47
|
+
- egg/mysql/mysql.py
|
48
|
+
- egg/xmlrpc/client.py
|
49
|
+
- egg/xmlrpc/server.py
|
50
|
+
- egg/xmlrpc/build.erb
|
43
51
|
- egg/egg/script.py
|
52
|
+
- egg/egg/build.yml
|
53
|
+
- egg/egg/test.py
|
44
54
|
- egg/egg/setup.erb
|
45
55
|
- egg/egg/suite.py
|
46
|
-
- egg/egg/
|
47
|
-
- egg/
|
48
|
-
- egg/
|
56
|
+
- egg/egg/ez_setup.py
|
57
|
+
- egg/mysql.yml
|
58
|
+
- egg/source/source.py
|
59
|
+
- egg/project.yml
|
49
60
|
- egg/http/server.py
|
61
|
+
- egg/http/build.erb
|
62
|
+
- egg/egg.yml
|
50
63
|
- egg/http.yml
|
51
|
-
- egg/
|
52
|
-
- egg/
|
53
|
-
- egg/project/build.erb
|
64
|
+
- egg/xmlrpc.yml
|
65
|
+
- egg/source.yml
|
54
66
|
- egg/project/script.py
|
55
67
|
- egg/project/test.py
|
56
|
-
- egg/project.
|
57
|
-
- egg/script/build.erb
|
58
|
-
- egg/script/script.py
|
59
|
-
- egg/script.yml
|
60
|
-
- egg/soap/build.erb
|
68
|
+
- egg/project/build.erb
|
61
69
|
- egg/soap/client.py
|
62
70
|
- egg/soap/server.py
|
63
|
-
- egg/soap.
|
64
|
-
- egg/source/source.py
|
65
|
-
- egg/source.yml
|
66
|
-
- egg/test/test.py
|
67
|
-
- egg/test.yml
|
68
|
-
- egg/xmlrpc/build.erb
|
69
|
-
- egg/xmlrpc/client.py
|
70
|
-
- egg/xmlrpc/server.py
|
71
|
-
- egg/xmlrpc.yml
|
72
|
-
- tools/common/__init__.py
|
73
|
-
- tools/common/common/__init__.py
|
74
|
-
- tools/common/common/__pkginfo__.py
|
75
|
-
- tools/common/common/adbh.py
|
76
|
-
- tools/common/common/cache.py
|
77
|
-
- tools/common/common/changelog.py
|
78
|
-
- tools/common/common/clcommands.py
|
79
|
-
- tools/common/common/cli.py
|
80
|
-
- tools/common/common/compat.py
|
81
|
-
- tools/common/common/configuration.py
|
82
|
-
- tools/common/common/contexts.py
|
83
|
-
- tools/common/common/corbautils.py
|
84
|
-
- tools/common/common/daemon.py
|
85
|
-
- tools/common/common/date.py
|
86
|
-
- tools/common/common/db.py
|
87
|
-
- tools/common/common/dbf.py
|
88
|
-
- tools/common/common/debugger.py
|
89
|
-
- tools/common/common/decorators.py
|
90
|
-
- tools/common/common/deprecation.py
|
91
|
-
- tools/common/common/fileutils.py
|
92
|
-
- tools/common/common/graph.py
|
93
|
-
- tools/common/common/html.py
|
94
|
-
- tools/common/common/interface.py
|
95
|
-
- tools/common/common/logging_ext.py
|
96
|
-
- tools/common/common/modutils.py
|
97
|
-
- tools/common/common/optik_ext.py
|
98
|
-
- tools/common/common/optparser.py
|
99
|
-
- tools/common/common/pdf_ext.py
|
100
|
-
- tools/common/common/proc.py
|
101
|
-
- tools/common/common/pyro_ext.py
|
102
|
-
- tools/common/common/pytest.py
|
103
|
-
- tools/common/common/shellutils.py
|
104
|
-
- tools/common/common/sphinx_ext.py
|
105
|
-
- tools/common/common/sphinxutils.py
|
106
|
-
- tools/common/common/sqlgen.py
|
107
|
-
- tools/common/common/table.py
|
108
|
-
- tools/common/common/tasksqueue.py
|
109
|
-
- tools/common/common/test/__init__.py
|
110
|
-
- tools/common/common/test/data/__init__.py
|
111
|
-
- tools/common/common/test/data/ChangeLog
|
112
|
-
- tools/common/common/test/data/content_differ_dir/NOTHING
|
113
|
-
- tools/common/common/test/data/content_differ_dir/README
|
114
|
-
- tools/common/common/test/data/content_differ_dir/subdir/coin
|
115
|
-
- tools/common/common/test/data/content_differ_dir/subdir/toto.txt
|
116
|
-
- tools/common/common/test/data/file_differ_dir/NOTHING
|
117
|
-
- tools/common/common/test/data/file_differ_dir/README
|
118
|
-
- tools/common/common/test/data/file_differ_dir/subdir/toto.txt
|
119
|
-
- tools/common/common/test/data/file_differ_dir/subdirtwo/Hello
|
120
|
-
- tools/common/common/test/data/find_test/__init__.py
|
121
|
-
- tools/common/common/test/data/find_test/foo.txt
|
122
|
-
- tools/common/common/test/data/find_test/module.py
|
123
|
-
- tools/common/common/test/data/find_test/module2.py
|
124
|
-
- tools/common/common/test/data/find_test/newlines.txt
|
125
|
-
- tools/common/common/test/data/find_test/noendingnewline.py
|
126
|
-
- tools/common/common/test/data/find_test/nonregr.py
|
127
|
-
- tools/common/common/test/data/find_test/normal_file.txt
|
128
|
-
- tools/common/common/test/data/find_test/spam.txt
|
129
|
-
- tools/common/common/test/data/find_test/sub/doc.txt
|
130
|
-
- tools/common/common/test/data/find_test/sub/momo.py
|
131
|
-
- tools/common/common/test/data/find_test/test.ini
|
132
|
-
- tools/common/common/test/data/find_test/test1.msg
|
133
|
-
- tools/common/common/test/data/find_test/test2.msg
|
134
|
-
- tools/common/common/test/data/find_test/write_protected_file.txt
|
135
|
-
- tools/common/common/test/data/foo.txt
|
136
|
-
- tools/common/common/test/data/module.py
|
137
|
-
- tools/common/common/test/data/module2.py
|
138
|
-
- tools/common/common/test/data/MyPyPa-0.1.0-py2.5.egg
|
139
|
-
- tools/common/common/test/data/newlines.txt
|
140
|
-
- tools/common/common/test/data/noendingnewline.py
|
141
|
-
- tools/common/common/test/data/nonregr.py
|
142
|
-
- tools/common/common/test/data/normal_file.txt
|
143
|
-
- tools/common/common/test/data/reference_dir/NOTHING
|
144
|
-
- tools/common/common/test/data/reference_dir/README
|
145
|
-
- tools/common/common/test/data/reference_dir/subdir/coin
|
146
|
-
- tools/common/common/test/data/reference_dir/subdir/toto.txt
|
147
|
-
- tools/common/common/test/data/same_dir/NOTHING
|
148
|
-
- tools/common/common/test/data/same_dir/README
|
149
|
-
- tools/common/common/test/data/same_dir/subdir/coin
|
150
|
-
- tools/common/common/test/data/same_dir/subdir/toto.txt
|
151
|
-
- tools/common/common/test/data/spam.txt
|
152
|
-
- tools/common/common/test/data/sub/doc.txt
|
153
|
-
- tools/common/common/test/data/sub/momo.py
|
154
|
-
- tools/common/common/test/data/subdir_differ_dir/NOTHING
|
155
|
-
- tools/common/common/test/data/subdir_differ_dir/README
|
156
|
-
- tools/common/common/test/data/subdir_differ_dir/subdir/coin
|
157
|
-
- tools/common/common/test/data/subdir_differ_dir/subdir/toto.txt
|
158
|
-
- tools/common/common/test/data/test.ini
|
159
|
-
- tools/common/common/test/data/test1.msg
|
160
|
-
- tools/common/common/test/data/test2.msg
|
161
|
-
- tools/common/common/test/data/write_protected_file.txt
|
162
|
-
- tools/common/common/test/foomod.py
|
163
|
-
- tools/common/common/test/unittest_cache.py
|
164
|
-
- tools/common/common/test/unittest_changelog.py
|
165
|
-
- tools/common/common/test/unittest_compat.py
|
166
|
-
- tools/common/common/test/unittest_configuration.py
|
167
|
-
- tools/common/common/test/unittest_date.py
|
168
|
-
- tools/common/common/test/unittest_decorators.py
|
169
|
-
- tools/common/common/test/unittest_deprecation.py
|
170
|
-
- tools/common/common/test/unittest_fileutils.py
|
171
|
-
- tools/common/common/test/unittest_graph.py
|
172
|
-
- tools/common/common/test/unittest_html.py
|
173
|
-
- tools/common/common/test/unittest_interface.py
|
174
|
-
- tools/common/common/test/unittest_modutils.py
|
175
|
-
- tools/common/common/test/unittest_pytest.py
|
176
|
-
- tools/common/common/test/unittest_shellutils.py
|
177
|
-
- tools/common/common/test/unittest_table.py
|
178
|
-
- tools/common/common/test/unittest_taskqueue.py
|
179
|
-
- tools/common/common/test/unittest_testlib.py
|
180
|
-
- tools/common/common/test/unittest_textutils.py
|
181
|
-
- tools/common/common/test/unittest_tree.py
|
182
|
-
- tools/common/common/test/unittest_umessage.py
|
183
|
-
- tools/common/common/test/unittest_ureports_html.py
|
184
|
-
- tools/common/common/test/unittest_ureports_text.py
|
185
|
-
- tools/common/common/test/unittest_xmlutils.py
|
186
|
-
- tools/common/common/test/utils.py
|
187
|
-
- tools/common/common/testlib.py
|
188
|
-
- tools/common/common/textutils.py
|
189
|
-
- tools/common/common/tree.py
|
190
|
-
- tools/common/common/umessage.py
|
191
|
-
- tools/common/common/ureports/__init__.py
|
192
|
-
- tools/common/common/ureports/docbook_writer.py
|
193
|
-
- tools/common/common/ureports/html_writer.py
|
194
|
-
- tools/common/common/ureports/nodes.py
|
195
|
-
- tools/common/common/ureports/text_writer.py
|
196
|
-
- tools/common/common/vcgutils.py
|
197
|
-
- tools/common/common/visitor.py
|
198
|
-
- tools/common/common/xmlrpcutils.py
|
199
|
-
- tools/common/common/xmlutils.py
|
71
|
+
- egg/soap/build.erb
|
200
72
|
- tools/compile/compile.py
|
201
|
-
- tools/coverage/coverage.py
|
202
|
-
- tools/epydoc/__init__.py
|
203
|
-
- tools/epydoc/__init__.pyc
|
204
|
-
- tools/epydoc/apidoc.py
|
205
|
-
- tools/epydoc/apidoc.pyc
|
206
|
-
- tools/epydoc/checker.py
|
207
|
-
- tools/epydoc/checker.pyc
|
208
|
-
- tools/epydoc/cli.py
|
209
|
-
- tools/epydoc/cli.pyc
|
210
|
-
- tools/epydoc/compat.py
|
211
|
-
- tools/epydoc/compat.pyc
|
212
|
-
- tools/epydoc/docbuilder.py
|
213
|
-
- tools/epydoc/docbuilder.pyc
|
214
|
-
- tools/epydoc/docintrospecter.py
|
215
|
-
- tools/epydoc/docintrospecter.pyc
|
216
|
-
- tools/epydoc/docparser.py
|
217
|
-
- tools/epydoc/docparser.pyc
|
218
|
-
- tools/epydoc/docstringparser.py
|
219
|
-
- tools/epydoc/docstringparser.pyc
|
220
|
-
- tools/epydoc/docwriter/__init__.py
|
221
|
-
- tools/epydoc/docwriter/__init__.pyc
|
222
|
-
- tools/epydoc/docwriter/dotgraph.py
|
223
|
-
- tools/epydoc/docwriter/dotgraph.pyc
|
224
|
-
- tools/epydoc/docwriter/html.py
|
225
|
-
- tools/epydoc/docwriter/html.pyc
|
226
|
-
- tools/epydoc/docwriter/html_colorize.py
|
227
|
-
- tools/epydoc/docwriter/html_colorize.pyc
|
228
|
-
- tools/epydoc/docwriter/html_css.py
|
229
|
-
- tools/epydoc/docwriter/html_css.pyc
|
230
|
-
- tools/epydoc/docwriter/html_help.py
|
231
|
-
- tools/epydoc/docwriter/html_help.pyc
|
232
|
-
- tools/epydoc/docwriter/latex.py
|
233
|
-
- tools/epydoc/docwriter/latex.pyc
|
234
|
-
- tools/epydoc/docwriter/plaintext.py
|
235
|
-
- tools/epydoc/docwriter/plaintext.pyc
|
236
|
-
- tools/epydoc/docwriter/xlink.py
|
237
|
-
- tools/epydoc/docwriter/xlink.pyc
|
238
|
-
- tools/epydoc/gui.py
|
239
|
-
- tools/epydoc/gui.pyc
|
240
|
-
- tools/epydoc/log.py
|
241
|
-
- tools/epydoc/log.pyc
|
242
|
-
- tools/epydoc/markup/__init__.py
|
243
|
-
- tools/epydoc/markup/__init__.pyc
|
244
|
-
- tools/epydoc/markup/doctest.py
|
245
|
-
- tools/epydoc/markup/doctest.pyc
|
246
|
-
- tools/epydoc/markup/epytext.py
|
247
|
-
- tools/epydoc/markup/epytext.pyc
|
248
|
-
- tools/epydoc/markup/javadoc.py
|
249
|
-
- tools/epydoc/markup/javadoc.pyc
|
250
|
-
- tools/epydoc/markup/plaintext.py
|
251
|
-
- tools/epydoc/markup/plaintext.pyc
|
252
|
-
- tools/epydoc/markup/pyval_repr.py
|
253
|
-
- tools/epydoc/markup/pyval_repr.pyc
|
254
|
-
- tools/epydoc/markup/restructuredtext.py
|
255
|
-
- tools/epydoc/markup/restructuredtext.pyc
|
256
|
-
- tools/epydoc/test/__init__.py
|
257
|
-
- tools/epydoc/test/__init__.pyc
|
258
|
-
- tools/epydoc/test/util.py
|
259
|
-
- tools/epydoc/test/util.pyc
|
260
|
-
- tools/epydoc/util.py
|
261
|
-
- tools/epydoc/util.pyc
|
262
73
|
- tools/logilab/logilab/__init__.py
|
263
|
-
- tools/logilab/logilab/astng/__init__.py
|
264
|
-
- tools/logilab/logilab/astng/__pkginfo__.py
|
265
|
-
- tools/logilab/logilab/astng/_exceptions.py
|
266
|
-
- tools/logilab/logilab/astng/_nodes_ast.py
|
267
|
-
- tools/logilab/logilab/astng/_nodes_compiler.py
|
268
|
-
- tools/logilab/logilab/astng/bases.py
|
269
74
|
- tools/logilab/logilab/astng/builder.py
|
270
75
|
- tools/logilab/logilab/astng/inference.py
|
271
|
-
- tools/logilab/logilab/astng/
|
272
|
-
- tools/logilab/logilab/astng/manager.py
|
76
|
+
- tools/logilab/logilab/astng/utils.py
|
273
77
|
- tools/logilab/logilab/astng/mixins.py
|
274
|
-
- tools/logilab/logilab/astng/
|
275
|
-
- tools/logilab/logilab/astng/
|
276
|
-
- tools/logilab/logilab/astng/
|
277
|
-
- tools/logilab/logilab/astng/
|
278
|
-
- tools/logilab/logilab/astng/
|
279
|
-
- tools/logilab/logilab/astng/raw_building.py
|
280
|
-
- tools/logilab/logilab/astng/rebuilder.py
|
281
|
-
- tools/logilab/logilab/astng/scoped_nodes.py
|
282
|
-
- tools/logilab/logilab/astng/test/__init__.py
|
283
|
-
- tools/logilab/logilab/astng/test/data/__init__.py
|
284
|
-
- tools/logilab/logilab/astng/test/data/all.py
|
285
|
-
- tools/logilab/logilab/astng/test/data/appl/__init__.py
|
286
|
-
- tools/logilab/logilab/astng/test/data/appl/myConnection.py
|
78
|
+
- tools/logilab/logilab/astng/test/unittest_lookup.py
|
79
|
+
- tools/logilab/logilab/astng/test/unittest_manager.py
|
80
|
+
- tools/logilab/logilab/astng/test/unittest_scoped_nodes.py
|
81
|
+
- tools/logilab/logilab/astng/test/data/nonregr.py
|
82
|
+
- tools/logilab/logilab/astng/test/data/notall.py
|
287
83
|
- tools/logilab/logilab/astng/test/data/format.py
|
288
|
-
- tools/logilab/logilab/astng/test/data/
|
84
|
+
- tools/logilab/logilab/astng/test/data/__init__.py
|
289
85
|
- tools/logilab/logilab/astng/test/data/module2.py
|
290
|
-
- tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.egg
|
291
|
-
- tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.zip
|
292
86
|
- tools/logilab/logilab/astng/test/data/noendingnewline.py
|
293
|
-
- tools/logilab/logilab/astng/test/data/nonregr.py
|
294
|
-
- tools/logilab/logilab/astng/test/data/notall.py
|
295
|
-
- tools/logilab/logilab/astng/test/data/SSL1/__init__.py
|
296
87
|
- tools/logilab/logilab/astng/test/data/SSL1/Connection1.py
|
297
|
-
- tools/logilab/logilab/astng/test/
|
298
|
-
- tools/logilab/logilab/astng/test/
|
299
|
-
- tools/logilab/logilab/astng/test/
|
300
|
-
- tools/logilab/logilab/astng/test/
|
88
|
+
- tools/logilab/logilab/astng/test/data/SSL1/__init__.py
|
89
|
+
- tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.zip
|
90
|
+
- tools/logilab/logilab/astng/test/data/appl/myConnection.py
|
91
|
+
- tools/logilab/logilab/astng/test/data/appl/__init__.py
|
92
|
+
- tools/logilab/logilab/astng/test/data/all.py
|
93
|
+
- tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.egg
|
94
|
+
- tools/logilab/logilab/astng/test/data/module.py
|
95
|
+
- tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/__init__.py
|
96
|
+
- tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/module.py
|
97
|
+
- tools/logilab/logilab/astng/test/regrtest_data/package/__init__.py
|
301
98
|
- tools/logilab/logilab/astng/test/regrtest_data/absimport.py
|
302
99
|
- tools/logilab/logilab/astng/test/regrtest_data/descriptor_crash.py
|
303
100
|
- tools/logilab/logilab/astng/test/regrtest_data/import_package_subpackage_module.py
|
304
|
-
- tools/logilab/logilab/astng/test/
|
305
|
-
- tools/logilab/logilab/astng/test/
|
306
|
-
- tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/module.py
|
307
|
-
- tools/logilab/logilab/astng/test/unittest_builder.py
|
101
|
+
- tools/logilab/logilab/astng/test/unittest_utils.py
|
102
|
+
- tools/logilab/logilab/astng/test/regrtest.py
|
308
103
|
- tools/logilab/logilab/astng/test/unittest_inference.py
|
309
104
|
- tools/logilab/logilab/astng/test/unittest_inspector.py
|
310
|
-
- tools/logilab/logilab/astng/test/
|
311
|
-
- tools/logilab/logilab/astng/test/
|
105
|
+
- tools/logilab/logilab/astng/test/__init__.py
|
106
|
+
- tools/logilab/logilab/astng/test/unittest_builder.py
|
107
|
+
- tools/logilab/logilab/astng/test/data2/__init__.py
|
108
|
+
- tools/logilab/logilab/astng/test/data2/suppliermodule_test.py
|
109
|
+
- tools/logilab/logilab/astng/test/data2/clientmodule_test.py
|
312
110
|
- tools/logilab/logilab/astng/test/unittest_nodes.py
|
313
|
-
- tools/logilab/logilab/astng/
|
314
|
-
- tools/logilab/logilab/astng/
|
315
|
-
- tools/logilab/logilab/astng/
|
316
|
-
- tools/logilab/logilab/
|
317
|
-
- tools/logilab/logilab/
|
318
|
-
- tools/logilab/logilab/
|
319
|
-
- tools/logilab/logilab/
|
320
|
-
- tools/logilab/logilab/
|
111
|
+
- tools/logilab/logilab/astng/protocols.py
|
112
|
+
- tools/logilab/logilab/astng/__pkginfo__.py
|
113
|
+
- tools/logilab/logilab/astng/inspector.py
|
114
|
+
- tools/logilab/logilab/astng/_nodes_compiler.py
|
115
|
+
- tools/logilab/logilab/astng/scoped_nodes.py
|
116
|
+
- tools/logilab/logilab/astng/nodes.py
|
117
|
+
- tools/logilab/logilab/astng/patchcomptransformer.py
|
118
|
+
- tools/logilab/logilab/astng/rebuilder.py
|
119
|
+
- tools/logilab/logilab/astng/raw_building.py
|
120
|
+
- tools/logilab/logilab/astng/nodes_as_string.py
|
121
|
+
- tools/logilab/logilab/astng/__init__.py
|
122
|
+
- tools/logilab/logilab/astng/manager.py
|
123
|
+
- tools/logilab/logilab/astng/_exceptions.py
|
124
|
+
- tools/logilab/logilab/astng/_nodes_ast.py
|
125
|
+
- tools/logilab/logilab/astng/bases.py
|
126
|
+
- tools/logilab/logilab/astng/node_classes.py
|
127
|
+
- tools/logilab/logilab/common/shellutils.py
|
128
|
+
- tools/logilab/logilab/common/textutils.py
|
321
129
|
- tools/logilab/logilab/common/clcommands.py
|
322
|
-
- tools/logilab/logilab/common/cli.py
|
323
|
-
- tools/logilab/logilab/common/compat.py
|
324
|
-
- tools/logilab/logilab/common/configuration.py
|
325
|
-
- tools/logilab/logilab/common/contexts.py
|
326
|
-
- tools/logilab/logilab/common/corbautils.py
|
327
|
-
- tools/logilab/logilab/common/daemon.py
|
328
|
-
- tools/logilab/logilab/common/date.py
|
329
|
-
- tools/logilab/logilab/common/db.py
|
330
|
-
- tools/logilab/logilab/common/dbf.py
|
331
|
-
- tools/logilab/logilab/common/debugger.py
|
332
|
-
- tools/logilab/logilab/common/decorators.py
|
333
|
-
- tools/logilab/logilab/common/deprecation.py
|
334
|
-
- tools/logilab/logilab/common/fileutils.py
|
335
|
-
- tools/logilab/logilab/common/graph.py
|
336
|
-
- tools/logilab/logilab/common/html.py
|
337
130
|
- tools/logilab/logilab/common/interface.py
|
338
|
-
- tools/logilab/logilab/common/
|
339
|
-
- tools/logilab/logilab/common/
|
340
|
-
- tools/logilab/logilab/common/
|
131
|
+
- tools/logilab/logilab/common/ureports/html_writer.py
|
132
|
+
- tools/logilab/logilab/common/ureports/nodes.py
|
133
|
+
- tools/logilab/logilab/common/ureports/__init__.py
|
134
|
+
- tools/logilab/logilab/common/ureports/text_writer.py
|
135
|
+
- tools/logilab/logilab/common/ureports/docbook_writer.py
|
341
136
|
- tools/logilab/logilab/common/optparser.py
|
342
|
-
- tools/logilab/logilab/common/
|
343
|
-
- tools/logilab/logilab/common/proc.py
|
344
|
-
- tools/logilab/logilab/common/pyro_ext.py
|
345
|
-
- tools/logilab/logilab/common/pytest.py
|
346
|
-
- tools/logilab/logilab/common/shellutils.py
|
137
|
+
- tools/logilab/logilab/common/modutils.py
|
347
138
|
- tools/logilab/logilab/common/sphinx_ext.py
|
348
|
-
- tools/logilab/logilab/common/
|
349
|
-
- tools/logilab/logilab/common/
|
350
|
-
- tools/logilab/logilab/common/
|
351
|
-
- tools/logilab/logilab/common/
|
352
|
-
- tools/logilab/logilab/common/test/
|
353
|
-
- tools/logilab/logilab/common/test/data/
|
354
|
-
- tools/logilab/logilab/common/test/data/
|
355
|
-
- tools/logilab/logilab/common/test/data/
|
356
|
-
- tools/logilab/logilab/common/test/data/
|
357
|
-
- tools/logilab/logilab/common/test/data/
|
358
|
-
- tools/logilab/logilab/common/test/data/
|
359
|
-
- tools/logilab/logilab/common/test/data/
|
360
|
-
- tools/logilab/logilab/common/test/data/
|
361
|
-
- tools/logilab/logilab/common/test/data/
|
362
|
-
- tools/logilab/logilab/common/test/data/
|
363
|
-
- tools/logilab/logilab/common/test/data/find_test/
|
364
|
-
- tools/logilab/logilab/common/test/data/find_test/
|
365
|
-
- tools/logilab/logilab/common/test/data/find_test/module.py
|
366
|
-
- tools/logilab/logilab/common/test/data/find_test/module2.py
|
139
|
+
- tools/logilab/logilab/common/configuration.py
|
140
|
+
- tools/logilab/logilab/common/test/unittest_pytest.py
|
141
|
+
- tools/logilab/logilab/common/test/unittest_changelog.py
|
142
|
+
- tools/logilab/logilab/common/test/data/sub/momo.py
|
143
|
+
- tools/logilab/logilab/common/test/data/sub/doc.txt
|
144
|
+
- tools/logilab/logilab/common/test/data/reference_dir/NOTHING
|
145
|
+
- tools/logilab/logilab/common/test/data/reference_dir/subdir/coin
|
146
|
+
- tools/logilab/logilab/common/test/data/reference_dir/subdir/toto.txt
|
147
|
+
- tools/logilab/logilab/common/test/data/reference_dir/README
|
148
|
+
- tools/logilab/logilab/common/test/data/spam.txt
|
149
|
+
- tools/logilab/logilab/common/test/data/newlines.txt
|
150
|
+
- tools/logilab/logilab/common/test/data/nonregr.py
|
151
|
+
- tools/logilab/logilab/common/test/data/normal_file.txt
|
152
|
+
- tools/logilab/logilab/common/test/data/test2.msg
|
153
|
+
- tools/logilab/logilab/common/test/data/find_test/sub/momo.py
|
154
|
+
- tools/logilab/logilab/common/test/data/find_test/sub/doc.txt
|
155
|
+
- tools/logilab/logilab/common/test/data/find_test/spam.txt
|
367
156
|
- tools/logilab/logilab/common/test/data/find_test/newlines.txt
|
368
|
-
- tools/logilab/logilab/common/test/data/find_test/noendingnewline.py
|
369
157
|
- tools/logilab/logilab/common/test/data/find_test/nonregr.py
|
370
158
|
- tools/logilab/logilab/common/test/data/find_test/normal_file.txt
|
371
|
-
- tools/logilab/logilab/common/test/data/find_test/
|
372
|
-
- tools/logilab/logilab/common/test/data/find_test/
|
373
|
-
- tools/logilab/logilab/common/test/data/find_test/sub/momo.py
|
159
|
+
- tools/logilab/logilab/common/test/data/find_test/test2.msg
|
160
|
+
- tools/logilab/logilab/common/test/data/find_test/__init__.py
|
374
161
|
- tools/logilab/logilab/common/test/data/find_test/test.ini
|
162
|
+
- tools/logilab/logilab/common/test/data/find_test/module2.py
|
163
|
+
- tools/logilab/logilab/common/test/data/find_test/noendingnewline.py
|
375
164
|
- tools/logilab/logilab/common/test/data/find_test/test1.msg
|
376
|
-
- tools/logilab/logilab/common/test/data/find_test/
|
165
|
+
- tools/logilab/logilab/common/test/data/find_test/foo.txt
|
377
166
|
- tools/logilab/logilab/common/test/data/find_test/write_protected_file.txt
|
378
|
-
- tools/logilab/logilab/common/test/data/
|
379
|
-
- tools/logilab/logilab/common/test/data/
|
380
|
-
- tools/logilab/logilab/common/test/data/module2.py
|
381
|
-
- tools/logilab/logilab/common/test/data/MyPyPa-0.1.0-py2.5.egg
|
382
|
-
- tools/logilab/logilab/common/test/data/newlines.txt
|
383
|
-
- tools/logilab/logilab/common/test/data/noendingnewline.py
|
384
|
-
- tools/logilab/logilab/common/test/data/nonregr.py
|
385
|
-
- tools/logilab/logilab/common/test/data/normal_file.txt
|
386
|
-
- tools/logilab/logilab/common/test/data/reference_dir/NOTHING
|
387
|
-
- tools/logilab/logilab/common/test/data/reference_dir/README
|
388
|
-
- tools/logilab/logilab/common/test/data/reference_dir/subdir/coin
|
389
|
-
- tools/logilab/logilab/common/test/data/reference_dir/subdir/toto.txt
|
167
|
+
- tools/logilab/logilab/common/test/data/find_test/module.py
|
168
|
+
- tools/logilab/logilab/common/test/data/ChangeLog
|
390
169
|
- tools/logilab/logilab/common/test/data/same_dir/NOTHING
|
391
|
-
- tools/logilab/logilab/common/test/data/same_dir/README
|
392
170
|
- tools/logilab/logilab/common/test/data/same_dir/subdir/coin
|
393
171
|
- tools/logilab/logilab/common/test/data/same_dir/subdir/toto.txt
|
394
|
-
- tools/logilab/logilab/common/test/data/
|
395
|
-
- tools/logilab/logilab/common/test/data/
|
396
|
-
- tools/logilab/logilab/common/test/data/
|
172
|
+
- tools/logilab/logilab/common/test/data/same_dir/README
|
173
|
+
- tools/logilab/logilab/common/test/data/__init__.py
|
174
|
+
- tools/logilab/logilab/common/test/data/test.ini
|
175
|
+
- tools/logilab/logilab/common/test/data/file_differ_dir/NOTHING
|
176
|
+
- tools/logilab/logilab/common/test/data/file_differ_dir/subdir/toto.txt
|
177
|
+
- tools/logilab/logilab/common/test/data/file_differ_dir/README
|
178
|
+
- tools/logilab/logilab/common/test/data/file_differ_dir/subdirtwo/Hello
|
179
|
+
- tools/logilab/logilab/common/test/data/module2.py
|
180
|
+
- tools/logilab/logilab/common/test/data/noendingnewline.py
|
181
|
+
- tools/logilab/logilab/common/test/data/test1.msg
|
182
|
+
- tools/logilab/logilab/common/test/data/foo.txt
|
183
|
+
- tools/logilab/logilab/common/test/data/MyPyPa-0.1.0-py2.5.egg
|
184
|
+
- tools/logilab/logilab/common/test/data/content_differ_dir/NOTHING
|
185
|
+
- tools/logilab/logilab/common/test/data/content_differ_dir/subdir/coin
|
186
|
+
- tools/logilab/logilab/common/test/data/content_differ_dir/subdir/toto.txt
|
187
|
+
- tools/logilab/logilab/common/test/data/content_differ_dir/README
|
397
188
|
- tools/logilab/logilab/common/test/data/subdir_differ_dir/NOTHING
|
398
|
-
- tools/logilab/logilab/common/test/data/subdir_differ_dir/README
|
399
189
|
- tools/logilab/logilab/common/test/data/subdir_differ_dir/subdir/coin
|
400
190
|
- tools/logilab/logilab/common/test/data/subdir_differ_dir/subdir/toto.txt
|
401
|
-
- tools/logilab/logilab/common/test/data/
|
402
|
-
- tools/logilab/logilab/common/test/data/test1.msg
|
403
|
-
- tools/logilab/logilab/common/test/data/test2.msg
|
191
|
+
- tools/logilab/logilab/common/test/data/subdir_differ_dir/README
|
404
192
|
- tools/logilab/logilab/common/test/data/write_protected_file.txt
|
405
|
-
- tools/logilab/logilab/common/test/
|
406
|
-
- tools/logilab/logilab/common/test/
|
407
|
-
- tools/logilab/logilab/common/test/unittest_changelog.py
|
408
|
-
- tools/logilab/logilab/common/test/unittest_compat.py
|
409
|
-
- tools/logilab/logilab/common/test/unittest_configuration.py
|
410
|
-
- tools/logilab/logilab/common/test/unittest_date.py
|
411
|
-
- tools/logilab/logilab/common/test/unittest_decorators.py
|
412
|
-
- tools/logilab/logilab/common/test/unittest_deprecation.py
|
413
|
-
- tools/logilab/logilab/common/test/unittest_fileutils.py
|
193
|
+
- tools/logilab/logilab/common/test/data/module.py
|
194
|
+
- tools/logilab/logilab/common/test/utils.py
|
414
195
|
- tools/logilab/logilab/common/test/unittest_graph.py
|
196
|
+
- tools/logilab/logilab/common/test/unittest_decorators.py
|
197
|
+
- tools/logilab/logilab/common/test/unittest_compat.py
|
198
|
+
- tools/logilab/logilab/common/test/unittest_xmlutils.py
|
415
199
|
- tools/logilab/logilab/common/test/unittest_html.py
|
416
200
|
- tools/logilab/logilab/common/test/unittest_interface.py
|
417
|
-
- tools/logilab/logilab/common/test/
|
418
|
-
- tools/logilab/logilab/common/test/unittest_pytest.py
|
419
|
-
- tools/logilab/logilab/common/test/unittest_shellutils.py
|
420
|
-
- tools/logilab/logilab/common/test/unittest_table.py
|
201
|
+
- tools/logilab/logilab/common/test/unittest_ureports_text.py
|
421
202
|
- tools/logilab/logilab/common/test/unittest_taskqueue.py
|
422
|
-
- tools/logilab/logilab/common/test/
|
423
|
-
- tools/logilab/logilab/common/test/unittest_textutils.py
|
424
|
-
- tools/logilab/logilab/common/test/unittest_tree.py
|
203
|
+
- tools/logilab/logilab/common/test/unittest_table.py
|
425
204
|
- tools/logilab/logilab/common/test/unittest_umessage.py
|
205
|
+
- tools/logilab/logilab/common/test/unittest_cache.py
|
206
|
+
- tools/logilab/logilab/common/test/unittest_modutils.py
|
207
|
+
- tools/logilab/logilab/common/test/unittest_deprecation.py
|
208
|
+
- tools/logilab/logilab/common/test/unittest_configuration.py
|
209
|
+
- tools/logilab/logilab/common/test/__init__.py
|
210
|
+
- tools/logilab/logilab/common/test/unittest_tree.py
|
426
211
|
- tools/logilab/logilab/common/test/unittest_ureports_html.py
|
427
|
-
- tools/logilab/logilab/common/test/
|
428
|
-
- tools/logilab/logilab/common/test/
|
429
|
-
- tools/logilab/logilab/common/test/
|
430
|
-
- tools/logilab/logilab/common/
|
431
|
-
- tools/logilab/logilab/common/
|
432
|
-
- tools/logilab/logilab/common/
|
212
|
+
- tools/logilab/logilab/common/test/foomod.py
|
213
|
+
- tools/logilab/logilab/common/test/unittest_textutils.py
|
214
|
+
- tools/logilab/logilab/common/test/unittest_fileutils.py
|
215
|
+
- tools/logilab/logilab/common/test/unittest_date.py
|
216
|
+
- tools/logilab/logilab/common/test/unittest_testlib.py
|
217
|
+
- tools/logilab/logilab/common/test/unittest_shellutils.py
|
218
|
+
- tools/logilab/logilab/common/contexts.py
|
219
|
+
- tools/logilab/logilab/common/decorators.py
|
433
220
|
- tools/logilab/logilab/common/umessage.py
|
434
|
-
- tools/logilab/logilab/common/
|
435
|
-
- tools/logilab/logilab/common/
|
436
|
-
- tools/logilab/logilab/common/ureports/html_writer.py
|
437
|
-
- tools/logilab/logilab/common/ureports/nodes.py
|
438
|
-
- tools/logilab/logilab/common/ureports/text_writer.py
|
439
|
-
- tools/logilab/logilab/common/vcgutils.py
|
440
|
-
- tools/logilab/logilab/common/visitor.py
|
221
|
+
- tools/logilab/logilab/common/__pkginfo__.py
|
222
|
+
- tools/logilab/logilab/common/cli.py
|
441
223
|
- tools/logilab/logilab/common/xmlrpcutils.py
|
224
|
+
- tools/logilab/logilab/common/daemon.py
|
225
|
+
- tools/logilab/logilab/common/proc.py
|
226
|
+
- tools/logilab/logilab/common/deprecation.py
|
227
|
+
- tools/logilab/logilab/common/graph.py
|
228
|
+
- tools/logilab/logilab/common/corbautils.py
|
229
|
+
- tools/logilab/logilab/common/visitor.py
|
230
|
+
- tools/logilab/logilab/common/adbh.py
|
231
|
+
- tools/logilab/logilab/common/debugger.py
|
232
|
+
- tools/logilab/logilab/common/compat.py
|
233
|
+
- tools/logilab/logilab/common/html.py
|
234
|
+
- tools/logilab/logilab/common/changelog.py
|
235
|
+
- tools/logilab/logilab/common/__init__.py
|
442
236
|
- tools/logilab/logilab/common/xmlutils.py
|
443
|
-
- tools/
|
444
|
-
- tools/
|
445
|
-
- tools/
|
446
|
-
- tools/
|
447
|
-
- tools/
|
448
|
-
- tools/
|
449
|
-
- tools/
|
450
|
-
- tools/
|
451
|
-
- tools/
|
452
|
-
- tools/
|
453
|
-
- tools/
|
454
|
-
- tools/
|
455
|
-
- tools/
|
456
|
-
- tools/
|
457
|
-
- tools/
|
458
|
-
- tools/
|
459
|
-
- tools/
|
460
|
-
- tools/
|
461
|
-
- tools/pychecker/
|
462
|
-
- tools/pychecker/
|
237
|
+
- tools/logilab/logilab/common/testlib.py
|
238
|
+
- tools/logilab/logilab/common/tree.py
|
239
|
+
- tools/logilab/logilab/common/logging_ext.py
|
240
|
+
- tools/logilab/logilab/common/pytest.py
|
241
|
+
- tools/logilab/logilab/common/fileutils.py
|
242
|
+
- tools/logilab/logilab/common/sphinxutils.py
|
243
|
+
- tools/logilab/logilab/common/sqlgen.py
|
244
|
+
- tools/logilab/logilab/common/dbf.py
|
245
|
+
- tools/logilab/logilab/common/vcgutils.py
|
246
|
+
- tools/logilab/logilab/common/table.py
|
247
|
+
- tools/logilab/logilab/common/date.py
|
248
|
+
- tools/logilab/logilab/common/pdf_ext.py
|
249
|
+
- tools/logilab/logilab/common/db.py
|
250
|
+
- tools/logilab/logilab/common/cache.py
|
251
|
+
- tools/logilab/logilab/common/pyro_ext.py
|
252
|
+
- tools/logilab/logilab/common/tasksqueue.py
|
253
|
+
- tools/logilab/logilab/common/optik_ext.py
|
254
|
+
- tools/test/suite.py
|
255
|
+
- tools/pychecker/CodeChecks.pyc
|
256
|
+
- tools/pychecker/python.pyo
|
257
|
+
- tools/pychecker/TODO
|
463
258
|
- tools/pychecker/msgs.pyc
|
259
|
+
- tools/pychecker/checker.py
|
464
260
|
- tools/pychecker/msgs.pyo
|
465
|
-
- tools/pychecker/
|
466
|
-
- tools/pychecker/
|
467
|
-
- tools/pychecker/
|
261
|
+
- tools/pychecker/VERSION
|
262
|
+
- tools/pychecker/pcmodules.pyc
|
263
|
+
- tools/pychecker/MAINTAINERS
|
264
|
+
- tools/pychecker/warn.pyc
|
265
|
+
- tools/pychecker/printer.pyo
|
266
|
+
- tools/pychecker/utils.py
|
468
267
|
- tools/pychecker/OP.pyo
|
268
|
+
- tools/pychecker/function.py
|
469
269
|
- tools/pychecker/options.py
|
270
|
+
- tools/pychecker/Stack.pyc
|
470
271
|
- tools/pychecker/options.pyc
|
471
|
-
- tools/pychecker/
|
472
|
-
- tools/pychecker/OptionTypes.py
|
473
|
-
- tools/pychecker/OptionTypes.pyc
|
474
|
-
- tools/pychecker/OptionTypes.pyo
|
272
|
+
- tools/pychecker/Config.pyc
|
475
273
|
- tools/pychecker/pcmodules.py
|
476
|
-
- tools/pychecker/
|
477
|
-
- tools/pychecker/
|
478
|
-
- tools/pychecker/printer.py
|
274
|
+
- tools/pychecker/Warning.pyo
|
275
|
+
- tools/pychecker/warn.pyo
|
479
276
|
- tools/pychecker/printer.pyc
|
480
|
-
- tools/pychecker/
|
277
|
+
- tools/pychecker/OptionTypes.pyc
|
278
|
+
- tools/pychecker/OP.pyc
|
279
|
+
- tools/pychecker/ChangeLog
|
481
280
|
- tools/pychecker/python.py
|
281
|
+
- tools/pychecker/CodeChecks.py
|
282
|
+
- tools/pychecker/__init__.pyc
|
283
|
+
- tools/pychecker/CodeChecks.pyo
|
284
|
+
- tools/pychecker/OptionTypes.pyo
|
285
|
+
- tools/pychecker/__init__.py
|
286
|
+
- tools/pychecker/KNOWN_BUGS
|
287
|
+
- tools/pychecker/options.pyo
|
288
|
+
- tools/pychecker/warn.py
|
289
|
+
- tools/pychecker/Config.pyo
|
290
|
+
- tools/pychecker/Warning.pyc
|
291
|
+
- tools/pychecker/Config.py
|
292
|
+
- tools/pychecker/COPYRIGHT
|
293
|
+
- tools/pychecker/__init__.pyo
|
294
|
+
- tools/pychecker/utils.pyc
|
295
|
+
- tools/pychecker/Stack.pyo
|
482
296
|
- tools/pychecker/python.pyc
|
483
|
-
- tools/pychecker/python.pyo
|
484
297
|
- tools/pychecker/README
|
298
|
+
- tools/pychecker/msgs.py
|
299
|
+
- tools/pychecker/function.pyc
|
300
|
+
- tools/pychecker/printer.py
|
301
|
+
- tools/pychecker/checker.pyo
|
302
|
+
- tools/pychecker/pcmodules.pyo
|
485
303
|
- tools/pychecker/Stack.py
|
486
|
-
- tools/pychecker/
|
487
|
-
- tools/pychecker/
|
488
|
-
- tools/pychecker/
|
489
|
-
- tools/pychecker/
|
490
|
-
- tools/pychecker/utils.pyc
|
304
|
+
- tools/pychecker/OP.py
|
305
|
+
- tools/pychecker/function.pyo
|
306
|
+
- tools/pychecker/OptionTypes.py
|
307
|
+
- tools/pychecker/NEWS
|
491
308
|
- tools/pychecker/utils.pyo
|
492
|
-
- tools/pychecker/
|
493
|
-
- tools/pychecker/warn.py
|
494
|
-
- tools/pychecker/warn.pyc
|
495
|
-
- tools/pychecker/warn.pyo
|
309
|
+
- tools/pychecker/checker.pyc
|
496
310
|
- tools/pychecker/Warning.py
|
497
|
-
- tools/
|
498
|
-
- tools/
|
499
|
-
- tools/
|
311
|
+
- tools/epydoc/docparser.py
|
312
|
+
- tools/epydoc/gui.py
|
313
|
+
- tools/epydoc/util.pyc
|
314
|
+
- tools/epydoc/compat.pyc
|
315
|
+
- tools/epydoc/checker.py
|
316
|
+
- tools/epydoc/test/util.pyc
|
317
|
+
- tools/epydoc/test/__init__.pyc
|
318
|
+
- tools/epydoc/test/__init__.py
|
319
|
+
- tools/epydoc/test/util.py
|
320
|
+
- tools/epydoc/gui.pyc
|
321
|
+
- tools/epydoc/docintrospecter.pyc
|
322
|
+
- tools/epydoc/cli.py
|
323
|
+
- tools/epydoc/docstringparser.pyc
|
324
|
+
- tools/epydoc/compat.py
|
325
|
+
- tools/epydoc/docwriter/latex.pyc
|
326
|
+
- tools/epydoc/docwriter/html_colorize.pyc
|
327
|
+
- tools/epydoc/docwriter/html_help.pyc
|
328
|
+
- tools/epydoc/docwriter/dotgraph.py
|
329
|
+
- tools/epydoc/docwriter/plaintext.pyc
|
330
|
+
- tools/epydoc/docwriter/html_help.py
|
331
|
+
- tools/epydoc/docwriter/html.py
|
332
|
+
- tools/epydoc/docwriter/__init__.pyc
|
333
|
+
- tools/epydoc/docwriter/__init__.py
|
334
|
+
- tools/epydoc/docwriter/xlink.pyc
|
335
|
+
- tools/epydoc/docwriter/html_css.py
|
336
|
+
- tools/epydoc/docwriter/latex.py
|
337
|
+
- tools/epydoc/docwriter/html_colorize.py
|
338
|
+
- tools/epydoc/docwriter/dotgraph.pyc
|
339
|
+
- tools/epydoc/docwriter/xlink.py
|
340
|
+
- tools/epydoc/docwriter/html_css.pyc
|
341
|
+
- tools/epydoc/docwriter/html.pyc
|
342
|
+
- tools/epydoc/docwriter/plaintext.py
|
343
|
+
- tools/epydoc/markup/javadoc.pyc
|
344
|
+
- tools/epydoc/markup/restructuredtext.pyc
|
345
|
+
- tools/epydoc/markup/epytext.pyc
|
346
|
+
- tools/epydoc/markup/pyval_repr.pyc
|
347
|
+
- tools/epydoc/markup/plaintext.pyc
|
348
|
+
- tools/epydoc/markup/restructuredtext.py
|
349
|
+
- tools/epydoc/markup/epytext.py
|
350
|
+
- tools/epydoc/markup/doctest.py
|
351
|
+
- tools/epydoc/markup/pyval_repr.py
|
352
|
+
- tools/epydoc/markup/__init__.pyc
|
353
|
+
- tools/epydoc/markup/__init__.py
|
354
|
+
- tools/epydoc/markup/doctest.pyc
|
355
|
+
- tools/epydoc/markup/javadoc.py
|
356
|
+
- tools/epydoc/markup/plaintext.py
|
357
|
+
- tools/epydoc/__init__.pyc
|
358
|
+
- tools/epydoc/docparser.pyc
|
359
|
+
- tools/epydoc/__init__.py
|
360
|
+
- tools/epydoc/docbuilder.py
|
361
|
+
- tools/epydoc/apidoc.py
|
362
|
+
- tools/epydoc/log.pyc
|
363
|
+
- tools/epydoc/docintrospecter.py
|
364
|
+
- tools/epydoc/cli.pyc
|
365
|
+
- tools/epydoc/util.py
|
366
|
+
- tools/epydoc/apidoc.pyc
|
367
|
+
- tools/epydoc/docbuilder.pyc
|
368
|
+
- tools/epydoc/docstringparser.py
|
369
|
+
- tools/epydoc/log.py
|
370
|
+
- tools/epydoc/checker.pyc
|
371
|
+
- tools/coverage/coverage.py
|
372
|
+
- tools/common/__init__.py
|
373
|
+
- tools/common/common/shellutils.py
|
374
|
+
- tools/common/common/textutils.py
|
375
|
+
- tools/common/common/clcommands.py
|
376
|
+
- tools/common/common/interface.py
|
377
|
+
- tools/common/common/ureports/html_writer.py
|
378
|
+
- tools/common/common/ureports/nodes.py
|
379
|
+
- tools/common/common/ureports/__init__.py
|
380
|
+
- tools/common/common/ureports/text_writer.py
|
381
|
+
- tools/common/common/ureports/docbook_writer.py
|
382
|
+
- tools/common/common/optparser.py
|
383
|
+
- tools/common/common/modutils.py
|
384
|
+
- tools/common/common/sphinx_ext.py
|
385
|
+
- tools/common/common/configuration.py
|
386
|
+
- tools/common/common/test/unittest_pytest.py
|
387
|
+
- tools/common/common/test/unittest_changelog.py
|
388
|
+
- tools/common/common/test/data/sub/momo.py
|
389
|
+
- tools/common/common/test/data/sub/doc.txt
|
390
|
+
- tools/common/common/test/data/reference_dir/NOTHING
|
391
|
+
- tools/common/common/test/data/reference_dir/subdir/coin
|
392
|
+
- tools/common/common/test/data/reference_dir/subdir/toto.txt
|
393
|
+
- tools/common/common/test/data/reference_dir/README
|
394
|
+
- tools/common/common/test/data/spam.txt
|
395
|
+
- tools/common/common/test/data/newlines.txt
|
396
|
+
- tools/common/common/test/data/nonregr.py
|
397
|
+
- tools/common/common/test/data/normal_file.txt
|
398
|
+
- tools/common/common/test/data/test2.msg
|
399
|
+
- tools/common/common/test/data/find_test/sub/momo.py
|
400
|
+
- tools/common/common/test/data/find_test/sub/doc.txt
|
401
|
+
- tools/common/common/test/data/find_test/spam.txt
|
402
|
+
- tools/common/common/test/data/find_test/newlines.txt
|
403
|
+
- tools/common/common/test/data/find_test/nonregr.py
|
404
|
+
- tools/common/common/test/data/find_test/normal_file.txt
|
405
|
+
- tools/common/common/test/data/find_test/test2.msg
|
406
|
+
- tools/common/common/test/data/find_test/__init__.py
|
407
|
+
- tools/common/common/test/data/find_test/test.ini
|
408
|
+
- tools/common/common/test/data/find_test/module2.py
|
409
|
+
- tools/common/common/test/data/find_test/noendingnewline.py
|
410
|
+
- tools/common/common/test/data/find_test/test1.msg
|
411
|
+
- tools/common/common/test/data/find_test/foo.txt
|
412
|
+
- tools/common/common/test/data/find_test/write_protected_file.txt
|
413
|
+
- tools/common/common/test/data/find_test/module.py
|
414
|
+
- tools/common/common/test/data/ChangeLog
|
415
|
+
- tools/common/common/test/data/same_dir/NOTHING
|
416
|
+
- tools/common/common/test/data/same_dir/subdir/coin
|
417
|
+
- tools/common/common/test/data/same_dir/subdir/toto.txt
|
418
|
+
- tools/common/common/test/data/same_dir/README
|
419
|
+
- tools/common/common/test/data/__init__.py
|
420
|
+
- tools/common/common/test/data/test.ini
|
421
|
+
- tools/common/common/test/data/file_differ_dir/NOTHING
|
422
|
+
- tools/common/common/test/data/file_differ_dir/subdir/toto.txt
|
423
|
+
- tools/common/common/test/data/file_differ_dir/README
|
424
|
+
- tools/common/common/test/data/file_differ_dir/subdirtwo/Hello
|
425
|
+
- tools/common/common/test/data/module2.py
|
426
|
+
- tools/common/common/test/data/noendingnewline.py
|
427
|
+
- tools/common/common/test/data/test1.msg
|
428
|
+
- tools/common/common/test/data/foo.txt
|
429
|
+
- tools/common/common/test/data/MyPyPa-0.1.0-py2.5.egg
|
430
|
+
- tools/common/common/test/data/content_differ_dir/NOTHING
|
431
|
+
- tools/common/common/test/data/content_differ_dir/subdir/coin
|
432
|
+
- tools/common/common/test/data/content_differ_dir/subdir/toto.txt
|
433
|
+
- tools/common/common/test/data/content_differ_dir/README
|
434
|
+
- tools/common/common/test/data/subdir_differ_dir/NOTHING
|
435
|
+
- tools/common/common/test/data/subdir_differ_dir/subdir/coin
|
436
|
+
- tools/common/common/test/data/subdir_differ_dir/subdir/toto.txt
|
437
|
+
- tools/common/common/test/data/subdir_differ_dir/README
|
438
|
+
- tools/common/common/test/data/write_protected_file.txt
|
439
|
+
- tools/common/common/test/data/module.py
|
440
|
+
- tools/common/common/test/utils.py
|
441
|
+
- tools/common/common/test/unittest_graph.py
|
442
|
+
- tools/common/common/test/unittest_decorators.py
|
443
|
+
- tools/common/common/test/unittest_compat.py
|
444
|
+
- tools/common/common/test/unittest_xmlutils.py
|
445
|
+
- tools/common/common/test/unittest_html.py
|
446
|
+
- tools/common/common/test/unittest_interface.py
|
447
|
+
- tools/common/common/test/unittest_ureports_text.py
|
448
|
+
- tools/common/common/test/unittest_taskqueue.py
|
449
|
+
- tools/common/common/test/unittest_table.py
|
450
|
+
- tools/common/common/test/unittest_umessage.py
|
451
|
+
- tools/common/common/test/unittest_cache.py
|
452
|
+
- tools/common/common/test/unittest_modutils.py
|
453
|
+
- tools/common/common/test/unittest_deprecation.py
|
454
|
+
- tools/common/common/test/unittest_configuration.py
|
455
|
+
- tools/common/common/test/__init__.py
|
456
|
+
- tools/common/common/test/unittest_tree.py
|
457
|
+
- tools/common/common/test/unittest_ureports_html.py
|
458
|
+
- tools/common/common/test/foomod.py
|
459
|
+
- tools/common/common/test/unittest_textutils.py
|
460
|
+
- tools/common/common/test/unittest_fileutils.py
|
461
|
+
- tools/common/common/test/unittest_date.py
|
462
|
+
- tools/common/common/test/unittest_testlib.py
|
463
|
+
- tools/common/common/test/unittest_shellutils.py
|
464
|
+
- tools/common/common/contexts.py
|
465
|
+
- tools/common/common/decorators.py
|
466
|
+
- tools/common/common/umessage.py
|
467
|
+
- tools/common/common/__pkginfo__.py
|
468
|
+
- tools/common/common/cli.py
|
469
|
+
- tools/common/common/xmlrpcutils.py
|
470
|
+
- tools/common/common/daemon.py
|
471
|
+
- tools/common/common/proc.py
|
472
|
+
- tools/common/common/deprecation.py
|
473
|
+
- tools/common/common/graph.py
|
474
|
+
- tools/common/common/corbautils.py
|
475
|
+
- tools/common/common/visitor.py
|
476
|
+
- tools/common/common/adbh.py
|
477
|
+
- tools/common/common/debugger.py
|
478
|
+
- tools/common/common/compat.py
|
479
|
+
- tools/common/common/html.py
|
480
|
+
- tools/common/common/changelog.py
|
481
|
+
- tools/common/common/__init__.py
|
482
|
+
- tools/common/common/xmlutils.py
|
483
|
+
- tools/common/common/testlib.py
|
484
|
+
- tools/common/common/tree.py
|
485
|
+
- tools/common/common/logging_ext.py
|
486
|
+
- tools/common/common/pytest.py
|
487
|
+
- tools/common/common/fileutils.py
|
488
|
+
- tools/common/common/sphinxutils.py
|
489
|
+
- tools/common/common/sqlgen.py
|
490
|
+
- tools/common/common/dbf.py
|
491
|
+
- tools/common/common/vcgutils.py
|
492
|
+
- tools/common/common/table.py
|
493
|
+
- tools/common/common/date.py
|
494
|
+
- tools/common/common/pdf_ext.py
|
495
|
+
- tools/common/common/db.py
|
496
|
+
- tools/common/common/cache.py
|
497
|
+
- tools/common/common/pyro_ext.py
|
498
|
+
- tools/common/common/tasksqueue.py
|
499
|
+
- tools/common/common/optik_ext.py
|
500
|
+
- tools/pylint2/pylint.py
|
501
|
+
- tools/pylint2/pylint/gui.py
|
502
|
+
- tools/pylint2/pylint/pyreverse/diagrams.py
|
503
|
+
- tools/pylint2/pylint/pyreverse/utils.py
|
504
|
+
- tools/pylint2/pylint/pyreverse/main.py
|
505
|
+
- tools/pylint2/pylint/pyreverse/__init__.py
|
506
|
+
- tools/pylint2/pylint/pyreverse/writer.py
|
507
|
+
- tools/pylint2/pylint/pyreverse/diadefslib.py
|
508
|
+
- tools/pylint2/pylint/config.py
|
509
|
+
- tools/pylint2/pylint/utils.py
|
500
510
|
- tools/pylint2/pylint/__pkginfo__.py
|
501
|
-
- tools/pylint2/pylint/
|
502
|
-
- tools/pylint2/pylint/checkers/
|
503
|
-
- tools/pylint2/pylint/checkers/classes.py
|
504
|
-
- tools/pylint2/pylint/checkers/design_analysis.py
|
511
|
+
- tools/pylint2/pylint/interfaces.py
|
512
|
+
- tools/pylint2/pylint/checkers/typecheck.py
|
505
513
|
- tools/pylint2/pylint/checkers/exceptions.py
|
506
|
-
- tools/pylint2/pylint/checkers/format.py
|
507
|
-
- tools/pylint2/pylint/checkers/imports.py
|
508
|
-
- tools/pylint2/pylint/checkers/logging.py
|
509
|
-
- tools/pylint2/pylint/checkers/misc.py
|
510
514
|
- tools/pylint2/pylint/checkers/newstyle.py
|
515
|
+
- tools/pylint2/pylint/checkers/utils.py
|
511
516
|
- tools/pylint2/pylint/checkers/raw_metrics.py
|
517
|
+
- tools/pylint2/pylint/checkers/design_analysis.py
|
518
|
+
- tools/pylint2/pylint/checkers/classes.py
|
519
|
+
- tools/pylint2/pylint/checkers/misc.py
|
520
|
+
- tools/pylint2/pylint/checkers/variables.py
|
521
|
+
- tools/pylint2/pylint/checkers/format.py
|
522
|
+
- tools/pylint2/pylint/checkers/imports.py
|
512
523
|
- tools/pylint2/pylint/checkers/similar.py
|
524
|
+
- tools/pylint2/pylint/checkers/__init__.py
|
525
|
+
- tools/pylint2/pylint/checkers/base.py
|
513
526
|
- tools/pylint2/pylint/checkers/string_format.py
|
514
|
-
- tools/pylint2/pylint/checkers/
|
515
|
-
- tools/pylint2/pylint/checkers/utils.py
|
516
|
-
- tools/pylint2/pylint/checkers/variables.py
|
517
|
-
- tools/pylint2/pylint/config.py
|
527
|
+
- tools/pylint2/pylint/checkers/logging.py
|
518
528
|
- tools/pylint2/pylint/epylint.py
|
519
|
-
- tools/pylint2/pylint/
|
520
|
-
- tools/pylint2/pylint/interfaces.py
|
529
|
+
- tools/pylint2/pylint/__init__.py
|
521
530
|
- tools/pylint2/pylint/lint.py
|
522
|
-
- tools/pylint2/pylint/pyreverse/__init__.py
|
523
|
-
- tools/pylint2/pylint/pyreverse/diadefslib.py
|
524
|
-
- tools/pylint2/pylint/pyreverse/diagrams.py
|
525
|
-
- tools/pylint2/pylint/pyreverse/main.py
|
526
|
-
- tools/pylint2/pylint/pyreverse/utils.py
|
527
|
-
- tools/pylint2/pylint/pyreverse/writer.py
|
528
|
-
- tools/pylint2/pylint/reporters/__init__.py
|
529
531
|
- tools/pylint2/pylint/reporters/guireporter.py
|
530
532
|
- tools/pylint2/pylint/reporters/html.py
|
533
|
+
- tools/pylint2/pylint/reporters/__init__.py
|
531
534
|
- tools/pylint2/pylint/reporters/text.py
|
532
|
-
- tools/pylint2/pylint/utils.py
|
533
|
-
- tools/pylint2/pylint.py
|
534
|
-
- tools/test/suite.py
|
535
535
|
- build/README
|
536
536
|
- LICENSE
|
537
537
|
has_rdoc: true
|