bee_python 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +202 -0
- data/build/README +23 -0
- data/egg/egg/build.yml +70 -0
- data/egg/egg/ez_setup.py +280 -0
- data/egg/egg/script.py +12 -0
- data/egg/egg/setup.erb +11 -0
- data/egg/egg/suite.py +37 -0
- data/egg/egg/test.py +31 -0
- data/egg/egg.yml +69 -0
- data/egg/http/build.erb +53 -0
- data/egg/http/server.py +34 -0
- data/egg/http.yml +50 -0
- data/egg/mysql/mysql.py +43 -0
- data/egg/mysql.yml +44 -0
- data/egg/project/build.erb +77 -0
- data/egg/project/script.py +42 -0
- data/egg/project/test.py +31 -0
- data/egg/project.yml +59 -0
- data/egg/script/build.erb +35 -0
- data/egg/script/script.py +42 -0
- data/egg/script.yml +50 -0
- data/egg/soap/build.erb +52 -0
- data/egg/soap/client.py +18 -0
- data/egg/soap/server.py +30 -0
- data/egg/soap.yml +58 -0
- data/egg/source/source.py +42 -0
- data/egg/source.yml +47 -0
- data/egg/test/test.py +28 -0
- data/egg/test.yml +44 -0
- data/egg/xmlrpc/build.erb +52 -0
- data/egg/xmlrpc/client.py +22 -0
- data/egg/xmlrpc/server.py +24 -0
- data/egg/xmlrpc.yml +51 -0
- data/lib/bee_task_python.rb +390 -0
- data/test/build.yml +16 -0
- data/test/tc_bee_task_python.rb +27 -0
- data/test/test_build.rb +26 -0
- data/test/test_build_listener.rb +62 -0
- data/test/ts_bee_python.rb +26 -0
- data/tools/common/__init__.py +5 -0
- data/tools/common/common/__init__.py +140 -0
- data/tools/common/common/__pkginfo__.py +43 -0
- data/tools/common/common/adbh.py +35 -0
- data/tools/common/common/cache.py +114 -0
- data/tools/common/common/changelog.py +234 -0
- data/tools/common/common/clcommands.py +181 -0
- data/tools/common/common/cli.py +212 -0
- data/tools/common/common/compat.py +328 -0
- data/tools/common/common/configuration.py +1087 -0
- data/tools/common/common/contexts.py +58 -0
- data/tools/common/common/corbautils.py +117 -0
- data/tools/common/common/daemon.py +171 -0
- data/tools/common/common/date.py +279 -0
- data/tools/common/common/db.py +49 -0
- data/tools/common/common/dbf.py +229 -0
- data/tools/common/common/debugger.py +208 -0
- data/tools/common/common/decorators.py +190 -0
- data/tools/common/common/deprecation.py +118 -0
- data/tools/common/common/fileutils.py +409 -0
- data/tools/common/common/graph.py +259 -0
- data/tools/common/common/html.py +142 -0
- data/tools/common/common/interface.py +76 -0
- data/tools/common/common/logging_ext.py +166 -0
- data/tools/common/common/modutils.py +670 -0
- data/tools/common/common/optik_ext.py +383 -0
- data/tools/common/common/optparser.py +92 -0
- data/tools/common/common/pdf_ext.py +111 -0
- data/tools/common/common/proc.py +276 -0
- data/tools/common/common/pyro_ext.py +146 -0
- data/tools/common/common/pytest.py +754 -0
- data/tools/common/common/shellutils.py +383 -0
- data/tools/common/common/sphinx_ext.py +87 -0
- data/tools/common/common/sphinxutils.py +122 -0
- data/tools/common/common/sqlgen.py +31 -0
- data/tools/common/common/table.py +930 -0
- data/tools/common/common/tasksqueue.py +97 -0
- data/tools/common/common/test/__init__.py +1 -0
- data/tools/common/common/test/data/ChangeLog +184 -0
- data/tools/common/common/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
- data/tools/common/common/test/data/__init__.py +1 -0
- data/tools/common/common/test/data/content_differ_dir/NOTHING +0 -0
- data/tools/common/common/test/data/content_differ_dir/README +1 -0
- data/tools/common/common/test/data/content_differ_dir/subdir/coin +1 -0
- data/tools/common/common/test/data/content_differ_dir/subdir/toto.txt +53 -0
- data/tools/common/common/test/data/file_differ_dir/NOTHING +0 -0
- data/tools/common/common/test/data/file_differ_dir/README +1 -0
- data/tools/common/common/test/data/file_differ_dir/subdir/toto.txt +53 -0
- data/tools/common/common/test/data/file_differ_dir/subdirtwo/Hello +0 -0
- data/tools/common/common/test/data/find_test/__init__.py +0 -0
- data/tools/common/common/test/data/find_test/foo.txt +0 -0
- data/tools/common/common/test/data/find_test/module.py +0 -0
- data/tools/common/common/test/data/find_test/module2.py +0 -0
- data/tools/common/common/test/data/find_test/newlines.txt +0 -0
- data/tools/common/common/test/data/find_test/noendingnewline.py +0 -0
- data/tools/common/common/test/data/find_test/nonregr.py +0 -0
- data/tools/common/common/test/data/find_test/normal_file.txt +0 -0
- data/tools/common/common/test/data/find_test/spam.txt +0 -0
- data/tools/common/common/test/data/find_test/sub/doc.txt +0 -0
- data/tools/common/common/test/data/find_test/sub/momo.py +0 -0
- data/tools/common/common/test/data/find_test/test.ini +0 -0
- data/tools/common/common/test/data/find_test/test1.msg +0 -0
- data/tools/common/common/test/data/find_test/test2.msg +0 -0
- data/tools/common/common/test/data/find_test/write_protected_file.txt +0 -0
- data/tools/common/common/test/data/foo.txt +9 -0
- data/tools/common/common/test/data/module.py +88 -0
- data/tools/common/common/test/data/module2.py +77 -0
- data/tools/common/common/test/data/newlines.txt +3 -0
- data/tools/common/common/test/data/noendingnewline.py +36 -0
- data/tools/common/common/test/data/nonregr.py +14 -0
- data/tools/common/common/test/data/normal_file.txt +0 -0
- data/tools/common/common/test/data/reference_dir/NOTHING +0 -0
- data/tools/common/common/test/data/reference_dir/README +1 -0
- data/tools/common/common/test/data/reference_dir/subdir/coin +1 -0
- data/tools/common/common/test/data/reference_dir/subdir/toto.txt +53 -0
- data/tools/common/common/test/data/same_dir/NOTHING +0 -0
- data/tools/common/common/test/data/same_dir/README +1 -0
- data/tools/common/common/test/data/same_dir/subdir/coin +1 -0
- data/tools/common/common/test/data/same_dir/subdir/toto.txt +53 -0
- data/tools/common/common/test/data/spam.txt +9 -0
- data/tools/common/common/test/data/sub/doc.txt +1 -0
- data/tools/common/common/test/data/sub/momo.py +1 -0
- data/tools/common/common/test/data/subdir_differ_dir/NOTHING +0 -0
- data/tools/common/common/test/data/subdir_differ_dir/README +1 -0
- data/tools/common/common/test/data/subdir_differ_dir/subdir/coin +1 -0
- data/tools/common/common/test/data/subdir_differ_dir/subdir/toto.txt +53 -0
- data/tools/common/common/test/data/test.ini +20 -0
- data/tools/common/common/test/data/test1.msg +30 -0
- data/tools/common/common/test/data/test2.msg +42 -0
- data/tools/common/common/test/data/write_protected_file.txt +0 -0
- data/tools/common/common/test/foomod.py +17 -0
- data/tools/common/common/test/unittest_cache.py +129 -0
- data/tools/common/common/test/unittest_changelog.py +37 -0
- data/tools/common/common/test/unittest_compat.py +239 -0
- data/tools/common/common/test/unittest_configuration.py +348 -0
- data/tools/common/common/test/unittest_date.py +154 -0
- data/tools/common/common/test/unittest_decorators.py +62 -0
- data/tools/common/common/test/unittest_deprecation.py +76 -0
- data/tools/common/common/test/unittest_fileutils.py +133 -0
- data/tools/common/common/test/unittest_graph.py +50 -0
- data/tools/common/common/test/unittest_html.py +76 -0
- data/tools/common/common/test/unittest_interface.py +87 -0
- data/tools/common/common/test/unittest_modutils.py +244 -0
- data/tools/common/common/test/unittest_pytest.py +50 -0
- data/tools/common/common/test/unittest_shellutils.py +248 -0
- data/tools/common/common/test/unittest_table.py +448 -0
- data/tools/common/common/test/unittest_taskqueue.py +71 -0
- data/tools/common/common/test/unittest_testlib.py +956 -0
- data/tools/common/common/test/unittest_textutils.py +247 -0
- data/tools/common/common/test/unittest_tree.py +248 -0
- data/tools/common/common/test/unittest_umessage.py +55 -0
- data/tools/common/common/test/unittest_ureports_html.py +64 -0
- data/tools/common/common/test/unittest_ureports_text.py +105 -0
- data/tools/common/common/test/unittest_xmlutils.py +75 -0
- data/tools/common/common/test/utils.py +87 -0
- data/tools/common/common/testlib.py +1927 -0
- data/tools/common/common/textutils.py +476 -0
- data/tools/common/common/tree.py +372 -0
- data/tools/common/common/umessage.py +161 -0
- data/tools/common/common/ureports/__init__.py +174 -0
- data/tools/common/common/ureports/docbook_writer.py +139 -0
- data/tools/common/common/ureports/html_writer.py +131 -0
- data/tools/common/common/ureports/nodes.py +201 -0
- data/tools/common/common/ureports/text_writer.py +140 -0
- data/tools/common/common/vcgutils.py +216 -0
- data/tools/common/common/visitor.py +107 -0
- data/tools/common/common/xmlrpcutils.py +136 -0
- data/tools/common/common/xmlutils.py +61 -0
- data/tools/compile/compile.py +16 -0
- data/tools/coverage/coverage.py +602 -0
- data/tools/epydoc/__init__.py +227 -0
- data/tools/epydoc/__init__.pyc +0 -0
- data/tools/epydoc/apidoc.py +2203 -0
- data/tools/epydoc/apidoc.pyc +0 -0
- data/tools/epydoc/checker.py +349 -0
- data/tools/epydoc/checker.pyc +0 -0
- data/tools/epydoc/cli.py +1470 -0
- data/tools/epydoc/cli.pyc +0 -0
- data/tools/epydoc/compat.py +250 -0
- data/tools/epydoc/compat.pyc +0 -0
- data/tools/epydoc/docbuilder.py +1358 -0
- data/tools/epydoc/docbuilder.pyc +0 -0
- data/tools/epydoc/docintrospecter.py +1056 -0
- data/tools/epydoc/docintrospecter.pyc +0 -0
- data/tools/epydoc/docparser.py +2113 -0
- data/tools/epydoc/docparser.pyc +0 -0
- data/tools/epydoc/docstringparser.py +1111 -0
- data/tools/epydoc/docstringparser.pyc +0 -0
- data/tools/epydoc/docwriter/__init__.py +12 -0
- data/tools/epydoc/docwriter/__init__.pyc +0 -0
- data/tools/epydoc/docwriter/dotgraph.py +1351 -0
- data/tools/epydoc/docwriter/dotgraph.pyc +0 -0
- data/tools/epydoc/docwriter/html.py +3491 -0
- data/tools/epydoc/docwriter/html.pyc +0 -0
- data/tools/epydoc/docwriter/html_colorize.py +909 -0
- data/tools/epydoc/docwriter/html_colorize.pyc +0 -0
- data/tools/epydoc/docwriter/html_css.py +550 -0
- data/tools/epydoc/docwriter/html_css.pyc +0 -0
- data/tools/epydoc/docwriter/html_help.py +190 -0
- data/tools/epydoc/docwriter/html_help.pyc +0 -0
- data/tools/epydoc/docwriter/latex.py +1187 -0
- data/tools/epydoc/docwriter/latex.pyc +0 -0
- data/tools/epydoc/docwriter/plaintext.py +276 -0
- data/tools/epydoc/docwriter/plaintext.pyc +0 -0
- data/tools/epydoc/docwriter/xlink.py +505 -0
- data/tools/epydoc/docwriter/xlink.pyc +0 -0
- data/tools/epydoc/gui.py +1148 -0
- data/tools/epydoc/gui.pyc +0 -0
- data/tools/epydoc/log.py +204 -0
- data/tools/epydoc/log.pyc +0 -0
- data/tools/epydoc/markup/__init__.py +623 -0
- data/tools/epydoc/markup/__init__.pyc +0 -0
- data/tools/epydoc/markup/doctest.py +311 -0
- data/tools/epydoc/markup/doctest.pyc +0 -0
- data/tools/epydoc/markup/epytext.py +2116 -0
- data/tools/epydoc/markup/epytext.pyc +0 -0
- data/tools/epydoc/markup/javadoc.py +250 -0
- data/tools/epydoc/markup/javadoc.pyc +0 -0
- data/tools/epydoc/markup/plaintext.py +78 -0
- data/tools/epydoc/markup/plaintext.pyc +0 -0
- data/tools/epydoc/markup/pyval_repr.py +532 -0
- data/tools/epydoc/markup/pyval_repr.pyc +0 -0
- data/tools/epydoc/markup/restructuredtext.py +906 -0
- data/tools/epydoc/markup/restructuredtext.pyc +0 -0
- data/tools/epydoc/test/__init__.py +97 -0
- data/tools/epydoc/test/__init__.pyc +0 -0
- data/tools/epydoc/test/util.py +226 -0
- data/tools/epydoc/test/util.pyc +0 -0
- data/tools/epydoc/util.py +289 -0
- data/tools/epydoc/util.pyc +0 -0
- data/tools/logilab/logilab/__init__.py +5 -0
- data/tools/logilab/logilab/astng/__init__.py +82 -0
- data/tools/logilab/logilab/astng/__pkginfo__.py +76 -0
- data/tools/logilab/logilab/astng/_exceptions.py +64 -0
- data/tools/logilab/logilab/astng/_nodes_ast.py +667 -0
- data/tools/logilab/logilab/astng/_nodes_compiler.py +758 -0
- data/tools/logilab/logilab/astng/bases.py +608 -0
- data/tools/logilab/logilab/astng/builder.py +239 -0
- data/tools/logilab/logilab/astng/inference.py +426 -0
- data/tools/logilab/logilab/astng/inspector.py +289 -0
- data/tools/logilab/logilab/astng/manager.py +421 -0
- data/tools/logilab/logilab/astng/mixins.py +165 -0
- data/tools/logilab/logilab/astng/node_classes.py +848 -0
- data/tools/logilab/logilab/astng/nodes.py +85 -0
- data/tools/logilab/logilab/astng/nodes_as_string.py +389 -0
- data/tools/logilab/logilab/astng/patchcomptransformer.py +159 -0
- data/tools/logilab/logilab/astng/protocols.py +333 -0
- data/tools/logilab/logilab/astng/raw_building.py +212 -0
- data/tools/logilab/logilab/astng/rebuilder.py +307 -0
- data/tools/logilab/logilab/astng/scoped_nodes.py +951 -0
- data/tools/logilab/logilab/astng/test/__init__.py +19 -0
- data/tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
- data/tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.zip +0 -0
- data/tools/logilab/logilab/astng/test/data/SSL1/Connection1.py +33 -0
- data/tools/logilab/logilab/astng/test/data/SSL1/__init__.py +20 -0
- data/tools/logilab/logilab/astng/test/data/__init__.py +20 -0
- data/tools/logilab/logilab/astng/test/data/all.py +29 -0
- data/tools/logilab/logilab/astng/test/data/appl/__init__.py +23 -0
- data/tools/logilab/logilab/astng/test/data/appl/myConnection.py +30 -0
- data/tools/logilab/logilab/astng/test/data/format.py +34 -0
- data/tools/logilab/logilab/astng/test/data/module.py +90 -0
- data/tools/logilab/logilab/astng/test/data/module2.py +112 -0
- data/tools/logilab/logilab/astng/test/data/noendingnewline.py +57 -0
- data/tools/logilab/logilab/astng/test/data/nonregr.py +76 -0
- data/tools/logilab/logilab/astng/test/data/notall.py +28 -0
- data/tools/logilab/logilab/astng/test/data2/__init__.py +20 -0
- data/tools/logilab/logilab/astng/test/data2/clientmodule_test.py +51 -0
- data/tools/logilab/logilab/astng/test/data2/suppliermodule_test.py +32 -0
- data/tools/logilab/logilab/astng/test/regrtest.py +135 -0
- data/tools/logilab/logilab/astng/test/regrtest_data/absimport.py +22 -0
- data/tools/logilab/logilab/astng/test/regrtest_data/descriptor_crash.py +31 -0
- data/tools/logilab/logilab/astng/test/regrtest_data/import_package_subpackage_module.py +68 -0
- data/tools/logilab/logilab/astng/test/regrtest_data/package/__init__.py +24 -0
- data/tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/__init__.py +20 -0
- data/tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/module.py +20 -0
- data/tools/logilab/logilab/astng/test/unittest_builder.py +684 -0
- data/tools/logilab/logilab/astng/test/unittest_inference.py +1112 -0
- data/tools/logilab/logilab/astng/test/unittest_inspector.py +105 -0
- data/tools/logilab/logilab/astng/test/unittest_lookup.py +302 -0
- data/tools/logilab/logilab/astng/test/unittest_manager.py +98 -0
- data/tools/logilab/logilab/astng/test/unittest_nodes.py +302 -0
- data/tools/logilab/logilab/astng/test/unittest_scoped_nodes.py +501 -0
- data/tools/logilab/logilab/astng/test/unittest_utils.py +104 -0
- data/tools/logilab/logilab/astng/utils.py +342 -0
- data/tools/logilab/logilab/common/__init__.py +140 -0
- data/tools/logilab/logilab/common/__pkginfo__.py +43 -0
- data/tools/logilab/logilab/common/adbh.py +35 -0
- data/tools/logilab/logilab/common/cache.py +114 -0
- data/tools/logilab/logilab/common/changelog.py +234 -0
- data/tools/logilab/logilab/common/clcommands.py +181 -0
- data/tools/logilab/logilab/common/cli.py +212 -0
- data/tools/logilab/logilab/common/compat.py +328 -0
- data/tools/logilab/logilab/common/configuration.py +1087 -0
- data/tools/logilab/logilab/common/contexts.py +58 -0
- data/tools/logilab/logilab/common/corbautils.py +117 -0
- data/tools/logilab/logilab/common/daemon.py +171 -0
- data/tools/logilab/logilab/common/date.py +279 -0
- data/tools/logilab/logilab/common/db.py +49 -0
- data/tools/logilab/logilab/common/dbf.py +229 -0
- data/tools/logilab/logilab/common/debugger.py +208 -0
- data/tools/logilab/logilab/common/decorators.py +190 -0
- data/tools/logilab/logilab/common/deprecation.py +118 -0
- data/tools/logilab/logilab/common/fileutils.py +409 -0
- data/tools/logilab/logilab/common/graph.py +259 -0
- data/tools/logilab/logilab/common/html.py +142 -0
- data/tools/logilab/logilab/common/interface.py +76 -0
- data/tools/logilab/logilab/common/logging_ext.py +166 -0
- data/tools/logilab/logilab/common/modutils.py +670 -0
- data/tools/logilab/logilab/common/optik_ext.py +383 -0
- data/tools/logilab/logilab/common/optparser.py +92 -0
- data/tools/logilab/logilab/common/pdf_ext.py +111 -0
- data/tools/logilab/logilab/common/proc.py +276 -0
- data/tools/logilab/logilab/common/pyro_ext.py +146 -0
- data/tools/logilab/logilab/common/pytest.py +754 -0
- data/tools/logilab/logilab/common/shellutils.py +383 -0
- data/tools/logilab/logilab/common/sphinx_ext.py +87 -0
- data/tools/logilab/logilab/common/sphinxutils.py +122 -0
- data/tools/logilab/logilab/common/sqlgen.py +31 -0
- data/tools/logilab/logilab/common/table.py +930 -0
- data/tools/logilab/logilab/common/tasksqueue.py +97 -0
- data/tools/logilab/logilab/common/test/__init__.py +1 -0
- data/tools/logilab/logilab/common/test/data/ChangeLog +184 -0
- data/tools/logilab/logilab/common/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
- data/tools/logilab/logilab/common/test/data/__init__.py +1 -0
- data/tools/logilab/logilab/common/test/data/content_differ_dir/NOTHING +0 -0
- data/tools/logilab/logilab/common/test/data/content_differ_dir/README +1 -0
- data/tools/logilab/logilab/common/test/data/content_differ_dir/subdir/coin +1 -0
- data/tools/logilab/logilab/common/test/data/content_differ_dir/subdir/toto.txt +53 -0
- data/tools/logilab/logilab/common/test/data/file_differ_dir/NOTHING +0 -0
- data/tools/logilab/logilab/common/test/data/file_differ_dir/README +1 -0
- data/tools/logilab/logilab/common/test/data/file_differ_dir/subdir/toto.txt +53 -0
- data/tools/logilab/logilab/common/test/data/file_differ_dir/subdirtwo/Hello +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/__init__.py +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/foo.txt +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/module.py +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/module2.py +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/newlines.txt +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/noendingnewline.py +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/nonregr.py +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/normal_file.txt +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/spam.txt +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/sub/doc.txt +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/sub/momo.py +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/test.ini +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/test1.msg +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/test2.msg +0 -0
- data/tools/logilab/logilab/common/test/data/find_test/write_protected_file.txt +0 -0
- data/tools/logilab/logilab/common/test/data/foo.txt +9 -0
- data/tools/logilab/logilab/common/test/data/module.py +88 -0
- data/tools/logilab/logilab/common/test/data/module2.py +77 -0
- data/tools/logilab/logilab/common/test/data/newlines.txt +3 -0
- data/tools/logilab/logilab/common/test/data/noendingnewline.py +36 -0
- data/tools/logilab/logilab/common/test/data/nonregr.py +14 -0
- data/tools/logilab/logilab/common/test/data/normal_file.txt +0 -0
- data/tools/logilab/logilab/common/test/data/reference_dir/NOTHING +0 -0
- data/tools/logilab/logilab/common/test/data/reference_dir/README +1 -0
- data/tools/logilab/logilab/common/test/data/reference_dir/subdir/coin +1 -0
- data/tools/logilab/logilab/common/test/data/reference_dir/subdir/toto.txt +53 -0
- data/tools/logilab/logilab/common/test/data/same_dir/NOTHING +0 -0
- data/tools/logilab/logilab/common/test/data/same_dir/README +1 -0
- data/tools/logilab/logilab/common/test/data/same_dir/subdir/coin +1 -0
- data/tools/logilab/logilab/common/test/data/same_dir/subdir/toto.txt +53 -0
- data/tools/logilab/logilab/common/test/data/spam.txt +9 -0
- data/tools/logilab/logilab/common/test/data/sub/doc.txt +1 -0
- data/tools/logilab/logilab/common/test/data/sub/momo.py +1 -0
- data/tools/logilab/logilab/common/test/data/subdir_differ_dir/NOTHING +0 -0
- data/tools/logilab/logilab/common/test/data/subdir_differ_dir/README +1 -0
- data/tools/logilab/logilab/common/test/data/subdir_differ_dir/subdir/coin +1 -0
- data/tools/logilab/logilab/common/test/data/subdir_differ_dir/subdir/toto.txt +53 -0
- data/tools/logilab/logilab/common/test/data/test.ini +20 -0
- data/tools/logilab/logilab/common/test/data/test1.msg +30 -0
- data/tools/logilab/logilab/common/test/data/test2.msg +42 -0
- data/tools/logilab/logilab/common/test/data/write_protected_file.txt +0 -0
- data/tools/logilab/logilab/common/test/foomod.py +17 -0
- data/tools/logilab/logilab/common/test/unittest_cache.py +129 -0
- data/tools/logilab/logilab/common/test/unittest_changelog.py +37 -0
- data/tools/logilab/logilab/common/test/unittest_compat.py +239 -0
- data/tools/logilab/logilab/common/test/unittest_configuration.py +348 -0
- data/tools/logilab/logilab/common/test/unittest_date.py +154 -0
- data/tools/logilab/logilab/common/test/unittest_decorators.py +62 -0
- data/tools/logilab/logilab/common/test/unittest_deprecation.py +76 -0
- data/tools/logilab/logilab/common/test/unittest_fileutils.py +133 -0
- data/tools/logilab/logilab/common/test/unittest_graph.py +50 -0
- data/tools/logilab/logilab/common/test/unittest_html.py +76 -0
- data/tools/logilab/logilab/common/test/unittest_interface.py +87 -0
- data/tools/logilab/logilab/common/test/unittest_modutils.py +244 -0
- data/tools/logilab/logilab/common/test/unittest_pytest.py +50 -0
- data/tools/logilab/logilab/common/test/unittest_shellutils.py +248 -0
- data/tools/logilab/logilab/common/test/unittest_table.py +448 -0
- data/tools/logilab/logilab/common/test/unittest_taskqueue.py +71 -0
- data/tools/logilab/logilab/common/test/unittest_testlib.py +956 -0
- data/tools/logilab/logilab/common/test/unittest_textutils.py +247 -0
- data/tools/logilab/logilab/common/test/unittest_tree.py +248 -0
- data/tools/logilab/logilab/common/test/unittest_umessage.py +55 -0
- data/tools/logilab/logilab/common/test/unittest_ureports_html.py +64 -0
- data/tools/logilab/logilab/common/test/unittest_ureports_text.py +105 -0
- data/tools/logilab/logilab/common/test/unittest_xmlutils.py +75 -0
- data/tools/logilab/logilab/common/test/utils.py +87 -0
- data/tools/logilab/logilab/common/testlib.py +1927 -0
- data/tools/logilab/logilab/common/textutils.py +476 -0
- data/tools/logilab/logilab/common/tree.py +372 -0
- data/tools/logilab/logilab/common/umessage.py +161 -0
- data/tools/logilab/logilab/common/ureports/__init__.py +174 -0
- data/tools/logilab/logilab/common/ureports/docbook_writer.py +139 -0
- data/tools/logilab/logilab/common/ureports/html_writer.py +131 -0
- data/tools/logilab/logilab/common/ureports/nodes.py +201 -0
- data/tools/logilab/logilab/common/ureports/text_writer.py +140 -0
- data/tools/logilab/logilab/common/vcgutils.py +216 -0
- data/tools/logilab/logilab/common/visitor.py +107 -0
- data/tools/logilab/logilab/common/xmlrpcutils.py +136 -0
- data/tools/logilab/logilab/common/xmlutils.py +61 -0
- data/tools/pychecker/COPYRIGHT +31 -0
- data/tools/pychecker/ChangeLog +349 -0
- data/tools/pychecker/CodeChecks.py +1969 -0
- data/tools/pychecker/CodeChecks.pyc +0 -0
- data/tools/pychecker/CodeChecks.pyo +0 -0
- data/tools/pychecker/Config.py +475 -0
- data/tools/pychecker/Config.pyc +0 -0
- data/tools/pychecker/Config.pyo +0 -0
- data/tools/pychecker/KNOWN_BUGS +100 -0
- data/tools/pychecker/MAINTAINERS +81 -0
- data/tools/pychecker/NEWS +406 -0
- data/tools/pychecker/OP.py +131 -0
- data/tools/pychecker/OP.pyc +0 -0
- data/tools/pychecker/OP.pyo +0 -0
- data/tools/pychecker/OptionTypes.py +117 -0
- data/tools/pychecker/OptionTypes.pyc +0 -0
- data/tools/pychecker/OptionTypes.pyo +0 -0
- data/tools/pychecker/README +152 -0
- data/tools/pychecker/Stack.py +115 -0
- data/tools/pychecker/Stack.pyc +0 -0
- data/tools/pychecker/Stack.pyo +0 -0
- data/tools/pychecker/TODO +101 -0
- data/tools/pychecker/VERSION +1 -0
- data/tools/pychecker/Warning.py +50 -0
- data/tools/pychecker/Warning.pyc +0 -0
- data/tools/pychecker/Warning.pyo +0 -0
- data/tools/pychecker/__init__.py +17 -0
- data/tools/pychecker/__init__.pyc +0 -0
- data/tools/pychecker/__init__.pyo +0 -0
- data/tools/pychecker/checker.py +961 -0
- data/tools/pychecker/checker.pyc +0 -0
- data/tools/pychecker/checker.pyo +0 -0
- data/tools/pychecker/function.py +159 -0
- data/tools/pychecker/function.pyc +0 -0
- data/tools/pychecker/function.pyo +0 -0
- data/tools/pychecker/msgs.py +175 -0
- data/tools/pychecker/msgs.pyc +0 -0
- data/tools/pychecker/msgs.pyo +0 -0
- data/tools/pychecker/options.py +275 -0
- data/tools/pychecker/options.pyc +0 -0
- data/tools/pychecker/options.pyo +0 -0
- data/tools/pychecker/pcmodules.py +19 -0
- data/tools/pychecker/pcmodules.pyc +0 -0
- data/tools/pychecker/pcmodules.pyo +0 -0
- data/tools/pychecker/printer.py +47 -0
- data/tools/pychecker/printer.pyc +0 -0
- data/tools/pychecker/printer.pyo +0 -0
- data/tools/pychecker/python.py +427 -0
- data/tools/pychecker/python.pyc +0 -0
- data/tools/pychecker/python.pyo +0 -0
- data/tools/pychecker/utils.py +102 -0
- data/tools/pychecker/utils.pyc +0 -0
- data/tools/pychecker/utils.pyo +0 -0
- data/tools/pychecker/warn.py +778 -0
- data/tools/pychecker/warn.pyc +0 -0
- data/tools/pychecker/warn.pyo +0 -0
- data/tools/pylint2/pylint/__init__.py +16 -0
- data/tools/pylint2/pylint/__pkginfo__.py +67 -0
- data/tools/pylint2/pylint/checkers/__init__.py +155 -0
- data/tools/pylint2/pylint/checkers/base.py +749 -0
- data/tools/pylint2/pylint/checkers/classes.py +527 -0
- data/tools/pylint2/pylint/checkers/design_analysis.py +344 -0
- data/tools/pylint2/pylint/checkers/exceptions.py +183 -0
- data/tools/pylint2/pylint/checkers/format.py +367 -0
- data/tools/pylint2/pylint/checkers/imports.py +379 -0
- data/tools/pylint2/pylint/checkers/logging.py +98 -0
- data/tools/pylint2/pylint/checkers/misc.py +128 -0
- data/tools/pylint2/pylint/checkers/newstyle.py +107 -0
- data/tools/pylint2/pylint/checkers/raw_metrics.py +125 -0
- data/tools/pylint2/pylint/checkers/similar.py +333 -0
- data/tools/pylint2/pylint/checkers/string_format.py +239 -0
- data/tools/pylint2/pylint/checkers/typecheck.py +364 -0
- data/tools/pylint2/pylint/checkers/utils.py +208 -0
- data/tools/pylint2/pylint/checkers/variables.py +498 -0
- data/tools/pylint2/pylint/config.py +149 -0
- data/tools/pylint2/pylint/epylint.py +149 -0
- data/tools/pylint2/pylint/gui.py +433 -0
- data/tools/pylint2/pylint/interfaces.py +98 -0
- data/tools/pylint2/pylint/lint.py +914 -0
- data/tools/pylint2/pylint/pyreverse/__init__.py +5 -0
- data/tools/pylint2/pylint/pyreverse/diadefslib.py +229 -0
- data/tools/pylint2/pylint/pyreverse/diagrams.py +247 -0
- data/tools/pylint2/pylint/pyreverse/main.py +123 -0
- data/tools/pylint2/pylint/pyreverse/utils.py +131 -0
- data/tools/pylint2/pylint/pyreverse/writer.py +196 -0
- data/tools/pylint2/pylint/reporters/__init__.py +67 -0
- data/tools/pylint2/pylint/reporters/guireporter.py +36 -0
- data/tools/pylint2/pylint/reporters/html.py +69 -0
- data/tools/pylint2/pylint/reporters/text.py +156 -0
- data/tools/pylint2/pylint/utils.py +518 -0
- data/tools/pylint2/pylint.py +16 -0
- data/tools/test/suite.py +35 -0
- metadata +566 -0
@@ -0,0 +1,367 @@
|
|
1
|
+
# Copyright (c) 2003-2010 Sylvain Thenault (thenault@gmail.com).
|
2
|
+
# Copyright (c) 2003-2010 LOGILAB S.A. (Paris, FRANCE).
|
3
|
+
# This program is free software; you can redistribute it and/or modify it under
|
4
|
+
# the terms of the GNU General Public License as published by the Free Software
|
5
|
+
# Foundation; either version 2 of the License, or (at your option) any later
|
6
|
+
# version.
|
7
|
+
#
|
8
|
+
# This program is distributed in the hope that it will be useful, but WITHOUT
|
9
|
+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
10
|
+
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
11
|
+
#
|
12
|
+
# You should have received a copy of the GNU General Public License along with
|
13
|
+
# this program; if not, write to the Free Software Foundation, Inc.,
|
14
|
+
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
15
|
+
"""Python code format's checker.
|
16
|
+
|
17
|
+
By default try to follow Guido's style guide :
|
18
|
+
|
19
|
+
http://www.python.org/doc/essays/styleguide.html
|
20
|
+
|
21
|
+
Some parts of the process_token method is based from The Tab Nanny std module.
|
22
|
+
"""
|
23
|
+
|
24
|
+
import re
|
25
|
+
import tokenize
|
26
|
+
if not hasattr(tokenize, 'NL'):
|
27
|
+
raise ValueError("tokenize.NL doesn't exist -- tokenize module too old")
|
28
|
+
|
29
|
+
from logilab.common.textutils import pretty_match
|
30
|
+
from logilab.astng import nodes
|
31
|
+
|
32
|
+
from pylint.interfaces import IRawChecker, IASTNGChecker
|
33
|
+
from pylint.checkers import BaseRawChecker
|
34
|
+
from pylint.checkers.misc import guess_encoding, is_ascii
|
35
|
+
|
36
|
+
MSGS = {
|
37
|
+
'C0301': ('Line too long (%s/%s)',
|
38
|
+
'Used when a line is longer than a given number of characters.'),
|
39
|
+
'C0302': ('Too many lines in module (%s)', # was W0302
|
40
|
+
'Used when a module has too much lines, reducing its readability.'
|
41
|
+
),
|
42
|
+
|
43
|
+
'W0311': ('Bad indentation. Found %s %s, expected %s',
|
44
|
+
'Used when an unexpected number of indentation\'s tabulations or '
|
45
|
+
'spaces has been found.'),
|
46
|
+
'W0312': ('Found indentation with %ss instead of %ss',
|
47
|
+
'Used when there are some mixed tabs and spaces in a module.'),
|
48
|
+
'W0301': ('Unnecessary semicolon', # was W0106
|
49
|
+
'Used when a statement is ended by a semi-colon (";"), which \
|
50
|
+
isn\'t necessary (that\'s python, not C ;).'),
|
51
|
+
|
52
|
+
'F0321': ('Format detection error in %r',
|
53
|
+
'Used when an unexpected error occurred in bad format detection.'
|
54
|
+
'Please report the error if it occurs.'),
|
55
|
+
'C0321': ('More than one statement on a single line',
|
56
|
+
'Used when more than on statement are found on the same line.'),
|
57
|
+
'C0322': ('Operator not preceded by a space\n%s',
|
58
|
+
'Used when one of the following operator (!= | <= | == | >= | < '
|
59
|
+
'| > | = | \+= | -= | \*= | /= | %) is not preceded by a space.'),
|
60
|
+
'C0323': ('Operator not followed by a space\n%s',
|
61
|
+
'Used when one of the following operator (!= | <= | == | >= | < '
|
62
|
+
'| > | = | \+= | -= | \*= | /= | %) is not followed by a space.'),
|
63
|
+
'C0324': ('Comma not followed by a space\n%s',
|
64
|
+
'Used when a comma (",") is not followed by a space.'),
|
65
|
+
|
66
|
+
'W0331': ('Use of the <> operator',
|
67
|
+
'Used when the deprecated "<>" operator is used instead \
|
68
|
+
of "!=".'),
|
69
|
+
'W0332': ('Use l as long integer identifier',
|
70
|
+
'Used when a lower case "l" is used to mark a long integer. You '
|
71
|
+
'should use a upper case "L" since the letter "l" looks too much '
|
72
|
+
'like the digit "1"'),
|
73
|
+
'W0333': ('Use of the `` operator',
|
74
|
+
'Used when the deprecated "``" (backtick) operator is used '
|
75
|
+
'instead of the str() function.'),
|
76
|
+
}
|
77
|
+
|
78
|
+
# simple quoted string rgx
|
79
|
+
SQSTRING_RGX = r'"([^"\\]|\\.)*?"'
|
80
|
+
# simple apostrophed rgx
|
81
|
+
SASTRING_RGX = r"'([^'\\]|\\.)*?'"
|
82
|
+
# triple quoted string rgx
|
83
|
+
TQSTRING_RGX = r'"""([^"]|("(?!"")))*?(""")'
|
84
|
+
# triple apostrophed string rgx # FIXME english please
|
85
|
+
TASTRING_RGX = r"'''([^']|('(?!'')))*?(''')"
|
86
|
+
|
87
|
+
# finally, the string regular expression
|
88
|
+
STRING_RGX = re.compile('(%s)|(%s)|(%s)|(%s)' % (TQSTRING_RGX, TASTRING_RGX,
|
89
|
+
SQSTRING_RGX, SASTRING_RGX),
|
90
|
+
re.MULTILINE|re.DOTALL)
|
91
|
+
|
92
|
+
COMMENT_RGX = re.compile("#.*$", re.M)
|
93
|
+
|
94
|
+
OPERATORS = r'!=|<=|==|>=|<|>|=|\+=|-=|\*=|/=|%'
|
95
|
+
|
96
|
+
OP_RGX_MATCH_1 = r'[^(]*(?<!\s|\^|<|>|=|\+|-|\*|/|!|%%|&|\|)(%s).*' % OPERATORS
|
97
|
+
OP_RGX_SEARCH_1 = r'(?<!\s|\^|<|>|=|\+|-|\*|/|!|%%|&|\|)(%s)' % OPERATORS
|
98
|
+
|
99
|
+
OP_RGX_MATCH_2 = r'[^(]*(%s)(?!\s|=|>|<).*' % OPERATORS
|
100
|
+
OP_RGX_SEARCH_2 = r'(%s)(?!\s|=|>)' % OPERATORS
|
101
|
+
|
102
|
+
BAD_CONSTRUCT_RGXS = (
|
103
|
+
|
104
|
+
(re.compile(OP_RGX_MATCH_1, re.M),
|
105
|
+
re.compile(OP_RGX_SEARCH_1, re.M),
|
106
|
+
'C0322'),
|
107
|
+
|
108
|
+
(re.compile(OP_RGX_MATCH_2, re.M),
|
109
|
+
re.compile(OP_RGX_SEARCH_2, re.M),
|
110
|
+
'C0323'),
|
111
|
+
|
112
|
+
(re.compile(r'.*,[^(\s|\]|}|\))].*', re.M),
|
113
|
+
re.compile(r',[^\s)]', re.M),
|
114
|
+
'C0324'),
|
115
|
+
)
|
116
|
+
|
117
|
+
|
118
|
+
def get_string_coords(line):
|
119
|
+
"""return a list of string positions (tuple (start, end)) in the line
|
120
|
+
"""
|
121
|
+
result = []
|
122
|
+
for match in re.finditer(STRING_RGX, line):
|
123
|
+
result.append( (match.start(), match.end()) )
|
124
|
+
return result
|
125
|
+
|
126
|
+
def in_coords(match, string_coords):
|
127
|
+
"""return true if the match is in the string coord"""
|
128
|
+
mstart = match.start()
|
129
|
+
for start, end in string_coords:
|
130
|
+
if mstart >= start and mstart < end:
|
131
|
+
return True
|
132
|
+
return False
|
133
|
+
|
134
|
+
def check_line(line, writer):
|
135
|
+
"""check a line for a bad construction
|
136
|
+
if it founds one, return a message describing the problem
|
137
|
+
else return None
|
138
|
+
"""
|
139
|
+
cleanstr = COMMENT_RGX.sub('', STRING_RGX.sub('', line))
|
140
|
+
for rgx_match, rgx_search, msg_id in BAD_CONSTRUCT_RGXS:
|
141
|
+
if rgx_match.match(cleanstr):
|
142
|
+
string_positions = get_string_coords(line)
|
143
|
+
for match in re.finditer(rgx_search, line):
|
144
|
+
if not in_coords(match, string_positions):
|
145
|
+
return msg_id, pretty_match(match, line.rstrip())
|
146
|
+
#writer.add_message('F0321', line=line, args=line)
|
147
|
+
|
148
|
+
|
149
|
+
class FormatChecker(BaseRawChecker):
|
150
|
+
"""checks for :
|
151
|
+
* unauthorized constructions
|
152
|
+
* strict indentation
|
153
|
+
* line length
|
154
|
+
* use of <> instead of !=
|
155
|
+
"""
|
156
|
+
|
157
|
+
__implements__ = (IRawChecker, IASTNGChecker)
|
158
|
+
|
159
|
+
# configuration section name
|
160
|
+
name = 'format'
|
161
|
+
# messages
|
162
|
+
msgs = MSGS
|
163
|
+
# configuration options
|
164
|
+
# for available dict keys/values see the optik parser 'add_option' method
|
165
|
+
options = (('max-line-length',
|
166
|
+
{'default' : 80, 'type' : "int", 'metavar' : '<int>',
|
167
|
+
'help' : 'Maximum number of characters on a single line.'}),
|
168
|
+
('max-module-lines',
|
169
|
+
{'default' : 1000, 'type' : 'int', 'metavar' : '<int>',
|
170
|
+
'help': 'Maximum number of lines in a module'}
|
171
|
+
),
|
172
|
+
('indent-string',
|
173
|
+
{'default' : ' ', 'type' : "string", 'metavar' : '<string>',
|
174
|
+
'help' : 'String used as indentation unit. This is usually \
|
175
|
+
" " (4 spaces) or "\\t" (1 tab).'}),
|
176
|
+
)
|
177
|
+
def __init__(self, linter=None):
|
178
|
+
BaseRawChecker.__init__(self, linter)
|
179
|
+
self._lines = None
|
180
|
+
self._visited_lines = None
|
181
|
+
|
182
|
+
def process_module(self, stream):
|
183
|
+
"""extracts encoding from the stream and
|
184
|
+
decodes each line, so that international
|
185
|
+
text's lenght properly calculated.
|
186
|
+
"""
|
187
|
+
data = stream.read()
|
188
|
+
line_generator = stream.readline
|
189
|
+
|
190
|
+
ascii, lineno = is_ascii(data)
|
191
|
+
if not ascii:
|
192
|
+
encoding = guess_encoding(data)
|
193
|
+
if encoding is not None:
|
194
|
+
line_generator = lambda: stream.readline().decode(encoding,
|
195
|
+
'replace')
|
196
|
+
del data
|
197
|
+
|
198
|
+
stream.seek(0)
|
199
|
+
self.process_tokens(tokenize.generate_tokens(line_generator))
|
200
|
+
|
201
|
+
def new_line(self, tok_type, line, line_num, junk):
|
202
|
+
"""a new line has been encountered, process it if necessary"""
|
203
|
+
if not tok_type in junk:
|
204
|
+
self._lines[line_num] = line.split('\n')[0]
|
205
|
+
self.check_lines(line, line_num)
|
206
|
+
|
207
|
+
def process_tokens(self, tokens):
|
208
|
+
"""process tokens and search for :
|
209
|
+
|
210
|
+
_ non strict indentation (i.e. not always using the <indent> parameter as
|
211
|
+
indent unit)
|
212
|
+
_ too long lines (i.e. longer than <max_chars>)
|
213
|
+
_ optionally bad construct (if given, bad_construct must be a compiled
|
214
|
+
regular expression).
|
215
|
+
"""
|
216
|
+
indent = tokenize.INDENT
|
217
|
+
dedent = tokenize.DEDENT
|
218
|
+
newline = tokenize.NEWLINE
|
219
|
+
junk = (tokenize.COMMENT, tokenize.NL)
|
220
|
+
indents = [0]
|
221
|
+
check_equal = 0
|
222
|
+
line_num = 0
|
223
|
+
previous = None
|
224
|
+
self._lines = {}
|
225
|
+
self._visited_lines = {}
|
226
|
+
for (tok_type, token, start, _, line) in tokens:
|
227
|
+
if start[0] != line_num:
|
228
|
+
if previous is not None and previous[0] == tokenize.OP and previous[1] == ';':
|
229
|
+
self.add_message('W0301', line=previous[2])
|
230
|
+
previous = None
|
231
|
+
line_num = start[0]
|
232
|
+
self.new_line(tok_type, line, line_num, junk)
|
233
|
+
if tok_type not in (indent, dedent, newline) + junk:
|
234
|
+
previous = tok_type, token, start[0]
|
235
|
+
|
236
|
+
if tok_type == tokenize.OP:
|
237
|
+
if token == '<>':
|
238
|
+
self.add_message('W0331', line=line_num)
|
239
|
+
elif tok_type == tokenize.NUMBER:
|
240
|
+
if token.endswith('l'):
|
241
|
+
self.add_message('W0332', line=line_num)
|
242
|
+
|
243
|
+
elif tok_type == newline:
|
244
|
+
# a program statement, or ENDMARKER, will eventually follow,
|
245
|
+
# after some (possibly empty) run of tokens of the form
|
246
|
+
# (NL | COMMENT)* (INDENT | DEDENT+)?
|
247
|
+
# If an INDENT appears, setting check_equal is wrong, and will
|
248
|
+
# be undone when we see the INDENT.
|
249
|
+
check_equal = 1
|
250
|
+
|
251
|
+
elif tok_type == indent:
|
252
|
+
check_equal = 0
|
253
|
+
self.check_indent_level(token, indents[-1]+1, line_num)
|
254
|
+
indents.append(indents[-1]+1)
|
255
|
+
|
256
|
+
elif tok_type == dedent:
|
257
|
+
# there's nothing we need to check here! what's important is
|
258
|
+
# that when the run of DEDENTs ends, the indentation of the
|
259
|
+
# program statement (or ENDMARKER) that triggered the run is
|
260
|
+
# equal to what's left at the top of the indents stack
|
261
|
+
check_equal = 1
|
262
|
+
if len(indents) > 1:
|
263
|
+
del indents[-1]
|
264
|
+
|
265
|
+
elif check_equal and tok_type not in junk:
|
266
|
+
# this is the first "real token" following a NEWLINE, so it
|
267
|
+
# must be the first token of the next program statement, or an
|
268
|
+
# ENDMARKER; the "line" argument exposes the leading whitespace
|
269
|
+
# for this statement; in the case of ENDMARKER, line is an empty
|
270
|
+
# string, so will properly match the empty string with which the
|
271
|
+
# "indents" stack was seeded
|
272
|
+
check_equal = 0
|
273
|
+
self.check_indent_level(line, indents[-1], line_num)
|
274
|
+
|
275
|
+
line_num -= 1 # to be ok with "wc -l"
|
276
|
+
if line_num > self.config.max_module_lines:
|
277
|
+
self.add_message('C0302', args=line_num, line=1)
|
278
|
+
|
279
|
+
def visit_default(self, node):
|
280
|
+
"""check the node line number and check it if not yet done"""
|
281
|
+
if not node.is_statement:
|
282
|
+
return
|
283
|
+
if not node.root().pure_python:
|
284
|
+
return # XXX block visit of child nodes
|
285
|
+
prev_sibl = node.previous_sibling()
|
286
|
+
if prev_sibl is not None:
|
287
|
+
prev_line = prev_sibl.fromlineno
|
288
|
+
else:
|
289
|
+
prev_line = node.parent.statement().fromlineno
|
290
|
+
line = node.fromlineno
|
291
|
+
assert line, node
|
292
|
+
if prev_line == line and self._visited_lines.get(line) != 2:
|
293
|
+
# py2.5 try: except: finally:
|
294
|
+
if not (isinstance(node, nodes.TryExcept)
|
295
|
+
and isinstance(node.parent, nodes.TryFinally)
|
296
|
+
and node.fromlineno == node.parent.fromlineno):
|
297
|
+
self.add_message('C0321', node=node)
|
298
|
+
self._visited_lines[line] = 2
|
299
|
+
return
|
300
|
+
if self._visited_lines.has_key(line):
|
301
|
+
return
|
302
|
+
try:
|
303
|
+
tolineno = node.blockstart_tolineno
|
304
|
+
except AttributeError:
|
305
|
+
tolineno = node.tolineno
|
306
|
+
assert tolineno, node
|
307
|
+
lines = []
|
308
|
+
for line in xrange(line, tolineno + 1):
|
309
|
+
self._visited_lines[line] = 1
|
310
|
+
try:
|
311
|
+
lines.append(self._lines[line].rstrip())
|
312
|
+
except KeyError:
|
313
|
+
lines.append('')
|
314
|
+
try:
|
315
|
+
msg_def = check_line('\n'.join(lines), self)
|
316
|
+
if msg_def:
|
317
|
+
self.add_message(msg_def[0], node=node, args=msg_def[1])
|
318
|
+
except KeyError:
|
319
|
+
# FIXME: internal error !
|
320
|
+
pass
|
321
|
+
|
322
|
+
def visit_backquote(self, node):
|
323
|
+
self.add_message('W0333', node=node)
|
324
|
+
|
325
|
+
def check_lines(self, lines, i):
|
326
|
+
"""check lines have less than a maximum number of characters
|
327
|
+
"""
|
328
|
+
max_chars = self.config.max_line_length
|
329
|
+
for line in lines.splitlines():
|
330
|
+
if len(line) > max_chars:
|
331
|
+
self.add_message('C0301', line=i, args=(len(line), max_chars))
|
332
|
+
i += 1
|
333
|
+
|
334
|
+
def check_indent_level(self, string, expected, line_num):
|
335
|
+
"""return the indent level of the string
|
336
|
+
"""
|
337
|
+
indent = self.config.indent_string
|
338
|
+
if indent == '\\t': # \t is not interpreted in the configuration file
|
339
|
+
indent = '\t'
|
340
|
+
level = 0
|
341
|
+
unit_size = len(indent)
|
342
|
+
while string[:unit_size] == indent:
|
343
|
+
string = string[unit_size:]
|
344
|
+
level += 1
|
345
|
+
suppl = ''
|
346
|
+
while string and string[0] in ' \t':
|
347
|
+
if string[0] != indent[0]:
|
348
|
+
if string[0] == '\t':
|
349
|
+
args = ('tab', 'space')
|
350
|
+
else:
|
351
|
+
args = ('space', 'tab')
|
352
|
+
self.add_message('W0312', args=args, line=line_num)
|
353
|
+
return level
|
354
|
+
suppl += string[0]
|
355
|
+
string = string [1:]
|
356
|
+
if level != expected or suppl:
|
357
|
+
i_type = 'spaces'
|
358
|
+
if indent[0] == '\t':
|
359
|
+
i_type = 'tabs'
|
360
|
+
self.add_message('W0311', line=line_num,
|
361
|
+
args=(level * unit_size + len(suppl), i_type,
|
362
|
+
expected * unit_size))
|
363
|
+
|
364
|
+
|
365
|
+
def register(linter):
|
366
|
+
"""required method to auto register this checker """
|
367
|
+
linter.register_checker(FormatChecker(linter))
|