bee_python 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,239 @@
|
|
1
|
+
# Copyright (c) 2009-2010 Arista Networks, Inc. - James Lingard
|
2
|
+
# Copyright (c) 2004-2010 LOGILAB S.A. (Paris, FRANCE).
|
3
|
+
# http://www.logilab.fr/ -- mailto:contact@logilab.fr
|
4
|
+
# This program is free software; you can redistribute it and/or modify it under
|
5
|
+
# the terms of the GNU General Public License as published by the Free Software
|
6
|
+
# Foundation; either version 2 of the License, or (at your option) any later
|
7
|
+
# version.
|
8
|
+
#
|
9
|
+
# This program is distributed in the hope that it will be useful, but WITHOUT
|
10
|
+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
11
|
+
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License along with
|
14
|
+
# this program; if not, write to the Free Software Foundation, Inc.,
|
15
|
+
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
16
|
+
|
17
|
+
|
18
|
+
"""Checker for string formatting operations.
|
19
|
+
"""
|
20
|
+
|
21
|
+
import string
|
22
|
+
from logilab import astng
|
23
|
+
from pylint.interfaces import IASTNGChecker
|
24
|
+
from pylint.checkers import BaseChecker
|
25
|
+
|
26
|
+
MSGS = {
|
27
|
+
'E9900': ("Unsupported format character %r (%#02x) at index %d",
|
28
|
+
"Used when a unsupported format character is used in a format\
|
29
|
+
string."),
|
30
|
+
'E9901': ("Format string ends in middle of conversion specifier",
|
31
|
+
"Used when a format string terminates before the end of a \
|
32
|
+
conversion specifier."),
|
33
|
+
'E9902': ("Mixing named and unnamed conversion specifiers in format string",
|
34
|
+
"Used when a format string contains both named (e.g. '%(foo)d') \
|
35
|
+
and unnamed (e.g. '%d') conversion specifiers. This is also \
|
36
|
+
used when a named conversion specifier contains * for the \
|
37
|
+
minimum field width and/or precision."),
|
38
|
+
'E9903': ("Expected mapping for format string, not %s",
|
39
|
+
"Used when a format string that uses named conversion specifiers \
|
40
|
+
is used with an argument that is not a mapping."),
|
41
|
+
'W9900': ("Format string dictionary key should be a string, not %s",
|
42
|
+
"Used when a format string that uses named conversion specifiers \
|
43
|
+
is used with a dictionary whose keys are not all strings."),
|
44
|
+
'W9901': ("Unused key %r in format string dictionary",
|
45
|
+
"Used when a format string that uses named conversion specifiers \
|
46
|
+
is used with a dictionary that conWtains keys not required by the \
|
47
|
+
format string."),
|
48
|
+
'E9904': ("Missing key %r in format string dictionary",
|
49
|
+
"Used when a format string that uses named conversion specifiers \
|
50
|
+
is used with a dictionary that doesn't contain all the keys \
|
51
|
+
required by the format string."),
|
52
|
+
'E9905': ("Too many arguments for format string",
|
53
|
+
"Used when a format string that uses unnamed conversion \
|
54
|
+
specifiers is given too few arguments."),
|
55
|
+
'E9906': ("Not enough arguments for format string",
|
56
|
+
"Used when a format string that uses unnamed conversion \
|
57
|
+
specifiers is given too many arguments"),
|
58
|
+
}
|
59
|
+
|
60
|
+
class IncompleteFormatStringException(Exception):
|
61
|
+
"""A format string ended in the middle of a format specifier."""
|
62
|
+
pass
|
63
|
+
|
64
|
+
class UnsupportedFormatCharacterException(Exception):
|
65
|
+
"""A format character in a format string is not one of the supported
|
66
|
+
format characters."""
|
67
|
+
def __init__(self, index):
|
68
|
+
Exception.__init__(self, index)
|
69
|
+
self.index = index
|
70
|
+
|
71
|
+
def parse_format_string(format_string):
|
72
|
+
"""Parses a format string, returning a tuple of (keys, num_args), where keys
|
73
|
+
is the set of mapping keys in the format string, and num_args is the number
|
74
|
+
of arguments required by the format string. Raises
|
75
|
+
IncompleteFormatStringException or UnsupportedFormatCharacterException if a
|
76
|
+
parse error occurs."""
|
77
|
+
keys = set()
|
78
|
+
num_args = 0
|
79
|
+
def next_char(i):
|
80
|
+
i += 1
|
81
|
+
if i == len(format_string):
|
82
|
+
raise IncompleteFormatStringException
|
83
|
+
return (i, format_string[i])
|
84
|
+
i = 0
|
85
|
+
while i < len(format_string):
|
86
|
+
c = format_string[i]
|
87
|
+
if c == '%':
|
88
|
+
i, c = next_char(i)
|
89
|
+
# Parse the mapping key (optional).
|
90
|
+
key = None
|
91
|
+
if c == '(':
|
92
|
+
depth = 1
|
93
|
+
i, c = next_char(i)
|
94
|
+
key_start = i
|
95
|
+
while depth != 0:
|
96
|
+
if c == '(':
|
97
|
+
depth += 1
|
98
|
+
elif c == ')':
|
99
|
+
depth -= 1
|
100
|
+
i, c = next_char(i)
|
101
|
+
key_end = i - 1
|
102
|
+
key = format_string[key_start:key_end]
|
103
|
+
|
104
|
+
# Parse the conversion flags (optional).
|
105
|
+
while c in '#0- +':
|
106
|
+
i, c = next_char(i)
|
107
|
+
# Parse the minimum field width (optional).
|
108
|
+
if c == '*':
|
109
|
+
num_args += 1
|
110
|
+
i, c = next_char(i)
|
111
|
+
else:
|
112
|
+
while c in string.digits:
|
113
|
+
i, c = next_char(i)
|
114
|
+
# Parse the precision (optional).
|
115
|
+
if c == '.':
|
116
|
+
i, c = next_char(i)
|
117
|
+
if c == '*':
|
118
|
+
num_args += 1
|
119
|
+
i, c = next_char(i)
|
120
|
+
else:
|
121
|
+
while c in string.digits:
|
122
|
+
i, c = next_char(i)
|
123
|
+
# Parse the length modifier (optional).
|
124
|
+
if c in 'hlL':
|
125
|
+
i, c = next_char(i)
|
126
|
+
# Parse the conversion type (mandatory).
|
127
|
+
if c not in 'diouxXeEfFgGcrs%':
|
128
|
+
raise UnsupportedFormatCharacterException(i)
|
129
|
+
if key:
|
130
|
+
keys.add(key)
|
131
|
+
elif c != '%':
|
132
|
+
num_args += 1
|
133
|
+
i += 1
|
134
|
+
return keys, num_args
|
135
|
+
|
136
|
+
class StringFormatChecker(BaseChecker):
|
137
|
+
"""Checks string formatting operations to ensure that the format string
|
138
|
+
is valid and the arguments match the format string.
|
139
|
+
"""
|
140
|
+
__implements__ = (IASTNGChecker,)
|
141
|
+
name = 'string_format'
|
142
|
+
msgs = MSGS
|
143
|
+
def visit_binop(self, node):
|
144
|
+
if node.op != '%':
|
145
|
+
return
|
146
|
+
f = node.left
|
147
|
+
args = node.right
|
148
|
+
if isinstance(f, astng.Const) and isinstance(f.value, basestring):
|
149
|
+
format_string = f.value
|
150
|
+
try:
|
151
|
+
required_keys, required_num_args = \
|
152
|
+
parse_format_string(format_string)
|
153
|
+
except UnsupportedFormatCharacterException, e:
|
154
|
+
c = format_string[e.index]
|
155
|
+
self.add_message('E9900', node=node, args=(c, ord(c), e.index))
|
156
|
+
except IncompleteFormatStringException:
|
157
|
+
self.add_message('E9901', node=node)
|
158
|
+
else:
|
159
|
+
if required_keys and required_num_args:
|
160
|
+
# The format string uses both named and unnamed format
|
161
|
+
# specifiers.
|
162
|
+
self.add_message('E9902', node=node)
|
163
|
+
elif required_keys:
|
164
|
+
# The format string uses only named format specifiers.
|
165
|
+
# Check that the RHS of the % operator is a mapping object
|
166
|
+
# that contains precisely the set of keys required by the
|
167
|
+
# format string.
|
168
|
+
if isinstance(args, astng.Dict):
|
169
|
+
keys = set()
|
170
|
+
unknown_keys = False
|
171
|
+
for k, v in args.items:
|
172
|
+
if isinstance(k, astng.Const):
|
173
|
+
key = k.value
|
174
|
+
if isinstance(key, basestring):
|
175
|
+
keys.add(key)
|
176
|
+
else:
|
177
|
+
self.add_message('W9900',
|
178
|
+
node=node,
|
179
|
+
args=key)
|
180
|
+
else:
|
181
|
+
# One of the keys was something other than a
|
182
|
+
# constant. Since we can't tell what it is,
|
183
|
+
# supress checks for missing keys in the
|
184
|
+
# dictionary.
|
185
|
+
unknown_keys = True
|
186
|
+
if not unknown_keys:
|
187
|
+
for key in required_keys:
|
188
|
+
if key not in keys:
|
189
|
+
self.add_message('E9904',
|
190
|
+
node=node,
|
191
|
+
args=key)
|
192
|
+
for key in keys:
|
193
|
+
if key not in required_keys:
|
194
|
+
self.add_message('W9901', node=node, args=key)
|
195
|
+
elif (isinstance(args, astng.Const) or
|
196
|
+
isinstance(args, astng.Tuple) or
|
197
|
+
isinstance(args, astng.List) or
|
198
|
+
isinstance(args, astng.ListComp) or
|
199
|
+
isinstance(args, astng.GenExpr) or
|
200
|
+
isinstance(args, astng.Backquote) or
|
201
|
+
isinstance(args, astng.Lambda)):
|
202
|
+
type_name = type(args).__name__
|
203
|
+
self.add_message('E9903', node=node, args=type_name)
|
204
|
+
else:
|
205
|
+
# The RHS of the format specifier is a name or
|
206
|
+
# expression. It may be a mapping object, so
|
207
|
+
# there's nothing we can check.
|
208
|
+
pass
|
209
|
+
else:
|
210
|
+
# The format string uses only unnamed format specifiers.
|
211
|
+
# Check that the number of arguments passed to the RHS of
|
212
|
+
# the % operator matches the number required by the format
|
213
|
+
# string.
|
214
|
+
if isinstance(args, astng.Tuple):
|
215
|
+
num_args = len(args.elts)
|
216
|
+
elif (isinstance(args, astng.Const) or
|
217
|
+
isinstance(args, astng.Dict) or
|
218
|
+
isinstance(args, astng.List) or
|
219
|
+
isinstance(args, astng.ListComp) or
|
220
|
+
isinstance(args, astng.GenExpr) or
|
221
|
+
isinstance(args, astng.Backquote) or
|
222
|
+
isinstance(args, astng.Lambda) or
|
223
|
+
isinstance(args, astng.Function)):
|
224
|
+
num_args = 1
|
225
|
+
else:
|
226
|
+
# The RHS of the format specifier is a name or
|
227
|
+
# expression. It could be a tuple of unknown size, so
|
228
|
+
# there's nothing we can check.
|
229
|
+
num_args = None
|
230
|
+
if num_args is not None:
|
231
|
+
if num_args > required_num_args:
|
232
|
+
self.add_message('E9905', node=node)
|
233
|
+
elif num_args < required_num_args:
|
234
|
+
self.add_message('E9906', node=node)
|
235
|
+
|
236
|
+
|
237
|
+
def register(linter):
|
238
|
+
"""required method to auto register this checker """
|
239
|
+
linter.register_checker(StringFormatChecker(linter))
|
@@ -0,0 +1,364 @@
|
|
1
|
+
# Copyright (c) 2006-2010 LOGILAB S.A. (Paris, FRANCE).
|
2
|
+
# http://www.logilab.fr/ -- mailto:contact@logilab.fr
|
3
|
+
#
|
4
|
+
# This program is free software; you can redistribute it and/or modify it under
|
5
|
+
# the terms of the GNU General Public License as published by the Free Software
|
6
|
+
# Foundation; either version 2 of the License, or (at your option) any later
|
7
|
+
# version.
|
8
|
+
#
|
9
|
+
# This program is distributed in the hope that it will be useful, but WITHOUT
|
10
|
+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
11
|
+
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License along with
|
14
|
+
# this program; if not, write to the Free Software Foundation, Inc.,
|
15
|
+
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
16
|
+
"""try to find more bugs in the code using astng inference capabilities
|
17
|
+
"""
|
18
|
+
|
19
|
+
from logilab.common.compat import set
|
20
|
+
|
21
|
+
|
22
|
+
from logilab import astng
|
23
|
+
from logilab.astng import InferenceError, NotFoundError, YES, Instance
|
24
|
+
|
25
|
+
from pylint.interfaces import IASTNGChecker
|
26
|
+
from pylint.checkers import BaseChecker
|
27
|
+
from pylint.checkers.utils import safe_infer, is_super
|
28
|
+
|
29
|
+
MSGS = {
|
30
|
+
'E1101': ('%s %r has no %r member',
|
31
|
+
'Used when a variable is accessed for an unexistent member.'),
|
32
|
+
'E1102': ('%s is not callable',
|
33
|
+
'Used when an object being called has been inferred to a non \
|
34
|
+
callable object'),
|
35
|
+
'E1103': ('%s %r has no %r member (but some types could not be inferred)',
|
36
|
+
'Used when a variable is accessed for an unexistent member, but \
|
37
|
+
astng was not able to interpret all possible types of this \
|
38
|
+
variable.'),
|
39
|
+
'E1111': ('Assigning to function call which doesn\'t return',
|
40
|
+
'Used when an assignment is done on a function call but the \
|
41
|
+
inferred function doesn\'t return anything.'),
|
42
|
+
'W1111': ('Assigning to function call which only returns None',
|
43
|
+
'Used when an assignment is done on a function call but the \
|
44
|
+
inferred function returns nothing but None.'),
|
45
|
+
|
46
|
+
'E1120': ('No value passed for parameter %s in function call',
|
47
|
+
'Used when a function call passes too few arguments.'),
|
48
|
+
'E1121': ('Too many positional arguments for function call',
|
49
|
+
'Used when a function call passes too many positional \
|
50
|
+
arguments.'),
|
51
|
+
'E1122': ('Duplicate keyword argument %r in function call',
|
52
|
+
'Used when a function call passes the same keyword argument \
|
53
|
+
multiple times.'),
|
54
|
+
'E1123': ('Passing unexpected keyword argument %r in function call',
|
55
|
+
'Used when a function call passes a keyword argument that \
|
56
|
+
doesn\'t correspond to one of the function\'s parameter names.'),
|
57
|
+
'E1124': ('Multiple values passed for parameter %r in function call',
|
58
|
+
'Used when a function call would result in assigning multiple \
|
59
|
+
values to a function parameter, one value from a positional \
|
60
|
+
argument and one from a keyword argument.'),
|
61
|
+
}
|
62
|
+
|
63
|
+
class TypeChecker(BaseChecker):
|
64
|
+
"""try to find bugs in the code using type inference
|
65
|
+
"""
|
66
|
+
|
67
|
+
__implements__ = (IASTNGChecker,)
|
68
|
+
|
69
|
+
# configuration section name
|
70
|
+
name = 'typecheck'
|
71
|
+
# messages
|
72
|
+
msgs = MSGS
|
73
|
+
priority = -1
|
74
|
+
# configuration options
|
75
|
+
options = (('ignore-mixin-members',
|
76
|
+
{'default' : True, 'type' : 'yn', 'metavar': '<y_or_n>',
|
77
|
+
'help' : 'Tells whether missing members accessed in mixin \
|
78
|
+
class should be ignored. A mixin class is detected if its name ends with \
|
79
|
+
"mixin" (case insensitive).'}
|
80
|
+
),
|
81
|
+
|
82
|
+
('ignored-classes',
|
83
|
+
{'default' : ('SQLObject',),
|
84
|
+
'type' : 'csv',
|
85
|
+
'metavar' : '<members names>',
|
86
|
+
'help' : 'List of classes names for which member attributes \
|
87
|
+
should not be checked (useful for classes with attributes dynamically set).'}
|
88
|
+
),
|
89
|
+
|
90
|
+
('zope',
|
91
|
+
{'default' : False, 'type' : 'yn', 'metavar': '<y_or_n>',
|
92
|
+
'help' : 'When zope mode is activated, add a predefined set \
|
93
|
+
of Zope acquired attributes to generated-members.'}
|
94
|
+
),
|
95
|
+
('generated-members',
|
96
|
+
{'default' : (
|
97
|
+
'REQUEST', 'acl_users', 'aq_parent'),
|
98
|
+
'type' : 'csv',
|
99
|
+
'metavar' : '<members names>',
|
100
|
+
'help' : 'List of members which are set dynamically and \
|
101
|
+
missed by pylint inference system, and so shouldn\'t trigger E0201 when \
|
102
|
+
accessed.'}
|
103
|
+
),
|
104
|
+
)
|
105
|
+
def __init__(self, linter=None):
|
106
|
+
BaseChecker.__init__(self, linter)
|
107
|
+
self.generated_members = list(self.config.generated_members)
|
108
|
+
if self.config.zope:
|
109
|
+
self.generated_members.extend(('REQUEST', 'acl_users', 'aq_parent'))
|
110
|
+
|
111
|
+
def visit_assattr(self, node):
|
112
|
+
if isinstance(node.ass_type(), astng.AugAssign):
|
113
|
+
self.visit_getattr(node)
|
114
|
+
|
115
|
+
def visit_delattr(self, node):
|
116
|
+
self.visit_getattr(node)
|
117
|
+
|
118
|
+
def visit_getattr(self, node):
|
119
|
+
"""check that the accessed attribute exists
|
120
|
+
|
121
|
+
to avoid to much false positives for now, we'll consider the code as
|
122
|
+
correct if a single of the inferred nodes has the accessed attribute.
|
123
|
+
|
124
|
+
function/method, super call and metaclasses are ignored
|
125
|
+
"""
|
126
|
+
if node.attrname in self.generated_members:
|
127
|
+
# attribute is marked as generated, stop here
|
128
|
+
return
|
129
|
+
try:
|
130
|
+
infered = list(node.expr.infer())
|
131
|
+
except InferenceError:
|
132
|
+
return
|
133
|
+
# list of (node, nodename) which are missing the attribute
|
134
|
+
missingattr = set()
|
135
|
+
ignoremim = self.config.ignore_mixin_members
|
136
|
+
inference_failure = False
|
137
|
+
for owner in infered:
|
138
|
+
# skip yes object
|
139
|
+
if owner is YES:
|
140
|
+
inference_failure = True
|
141
|
+
continue
|
142
|
+
# skip None anyway
|
143
|
+
if isinstance(owner, astng.Const) and owner.value is None:
|
144
|
+
continue
|
145
|
+
# XXX "super" / metaclass call
|
146
|
+
if is_super(owner) or getattr(owner, 'type', None) == 'metaclass':
|
147
|
+
continue
|
148
|
+
name = getattr(owner, 'name', 'None')
|
149
|
+
if name in self.config.ignored_classes:
|
150
|
+
continue
|
151
|
+
if ignoremim and name[-5:].lower() == 'mixin':
|
152
|
+
continue
|
153
|
+
try:
|
154
|
+
if not [n for n in owner.getattr(node.attrname)
|
155
|
+
if not isinstance(n.statement(), astng.AugAssign)]:
|
156
|
+
missingattr.add((owner, name))
|
157
|
+
continue
|
158
|
+
except AttributeError:
|
159
|
+
# XXX method / function
|
160
|
+
continue
|
161
|
+
except NotFoundError:
|
162
|
+
if isinstance(owner, Instance) and owner.has_dynamic_getattr():
|
163
|
+
continue
|
164
|
+
# explicit skipping of optparse'Values class
|
165
|
+
if owner.name == 'Values' and \
|
166
|
+
owner.root().name in ('optik', 'optparse'):
|
167
|
+
continue
|
168
|
+
missingattr.add((owner, name))
|
169
|
+
continue
|
170
|
+
# stop on the first found
|
171
|
+
break
|
172
|
+
else:
|
173
|
+
# we have not found any node with the attributes, display the
|
174
|
+
# message for infered nodes
|
175
|
+
done = set()
|
176
|
+
for owner, name in missingattr:
|
177
|
+
if isinstance(owner, Instance):
|
178
|
+
actual = owner._proxied
|
179
|
+
else:
|
180
|
+
actual = owner
|
181
|
+
if actual in done:
|
182
|
+
continue
|
183
|
+
done.add(actual)
|
184
|
+
if inference_failure:
|
185
|
+
msgid = 'E1103'
|
186
|
+
else:
|
187
|
+
msgid = 'E1101'
|
188
|
+
self.add_message(msgid, node=node,
|
189
|
+
args=(owner.display_type(), name,
|
190
|
+
node.attrname))
|
191
|
+
|
192
|
+
|
193
|
+
def visit_assign(self, node):
|
194
|
+
"""check that if assigning to a function call, the function is
|
195
|
+
possibly returning something valuable
|
196
|
+
"""
|
197
|
+
if not isinstance(node.value, astng.CallFunc):
|
198
|
+
return
|
199
|
+
function_node = safe_infer(node.value.func)
|
200
|
+
# skip class, generator and incomplete function definition
|
201
|
+
if not (isinstance(function_node, astng.Function) and
|
202
|
+
function_node.root().fully_defined()):
|
203
|
+
return
|
204
|
+
if function_node.is_generator() \
|
205
|
+
or function_node.is_abstract(pass_is_abstract=False):
|
206
|
+
return
|
207
|
+
returns = list(function_node.nodes_of_class(astng.Return,
|
208
|
+
skip_klass=astng.Function))
|
209
|
+
if len(returns) == 0:
|
210
|
+
self.add_message('E1111', node=node)
|
211
|
+
else:
|
212
|
+
for rnode in returns:
|
213
|
+
if not (isinstance(rnode.value, astng.Const)
|
214
|
+
and rnode.value.value is None):
|
215
|
+
break
|
216
|
+
else:
|
217
|
+
self.add_message('W1111', node=node)
|
218
|
+
|
219
|
+
def visit_callfunc(self, node):
|
220
|
+
"""check that called functions/methods are inferred to callable objects,
|
221
|
+
and that the arguments passed to the function match the parameters in
|
222
|
+
the inferred function's definition
|
223
|
+
"""
|
224
|
+
|
225
|
+
# Build the set of keyword arguments, checking for duplicate keywords,
|
226
|
+
# and count the positional arguments.
|
227
|
+
keyword_args = set()
|
228
|
+
num_positional_args = 0
|
229
|
+
for arg in node.args:
|
230
|
+
if isinstance(arg, astng.Keyword):
|
231
|
+
keyword = arg.arg
|
232
|
+
if keyword in keyword_args:
|
233
|
+
self.add_message('E1122', node=node, args=keyword)
|
234
|
+
keyword_args.add(keyword)
|
235
|
+
else:
|
236
|
+
num_positional_args += 1
|
237
|
+
|
238
|
+
called = safe_infer(node.func)
|
239
|
+
# only function, generator and object defining __call__ are allowed
|
240
|
+
if called is not None and not called.callable():
|
241
|
+
self.add_message('E1102', node=node, args=node.func.as_string())
|
242
|
+
|
243
|
+
# Note that BoundMethod is a subclass of UnboundMethod (huh?), so must
|
244
|
+
# come first in this 'if..else'.
|
245
|
+
if isinstance(called, astng.BoundMethod):
|
246
|
+
# Bound methods have an extra implicit 'self' argument.
|
247
|
+
num_positional_args += 1
|
248
|
+
elif isinstance(called, astng.UnboundMethod):
|
249
|
+
if called.decorators is not None:
|
250
|
+
for d in called.decorators.nodes:
|
251
|
+
if isinstance(d, astng.Name) and (d.name == 'classmethod'):
|
252
|
+
# Class methods have an extra implicit 'cls' argument.
|
253
|
+
num_positional_args += 1
|
254
|
+
break
|
255
|
+
elif (isinstance(called, astng.Function) or
|
256
|
+
isinstance(called, astng.Lambda)):
|
257
|
+
pass
|
258
|
+
else:
|
259
|
+
return
|
260
|
+
|
261
|
+
if called.args.args is None:
|
262
|
+
# Built-in functions have no argument information.
|
263
|
+
return
|
264
|
+
|
265
|
+
if len( called.argnames() ) != len( set( called.argnames() ) ):
|
266
|
+
# Duplicate parameter name (see E9801). We can't really make sense
|
267
|
+
# of the function call in this case, so just return.
|
268
|
+
return
|
269
|
+
|
270
|
+
# Analyze the list of formal parameters.
|
271
|
+
num_mandatory_parameters = len(called.args.args) - len(called.args.defaults)
|
272
|
+
parameters = []
|
273
|
+
parameter_name_to_index = {}
|
274
|
+
for i, arg in enumerate(called.args.args):
|
275
|
+
if isinstance(arg, astng.Tuple):
|
276
|
+
name = None
|
277
|
+
# Don't store any parameter names within the tuple, since those
|
278
|
+
# are not assignable from keyword arguments.
|
279
|
+
else:
|
280
|
+
if isinstance(arg, astng.Keyword):
|
281
|
+
name = arg.arg
|
282
|
+
else:
|
283
|
+
assert isinstance(arg, astng.AssName)
|
284
|
+
# This occurs with:
|
285
|
+
# def f( (a), (b) ): pass
|
286
|
+
name = arg.name
|
287
|
+
parameter_name_to_index[name] = i
|
288
|
+
if i >= num_mandatory_parameters:
|
289
|
+
defval = called.args.defaults[i - num_mandatory_parameters]
|
290
|
+
else:
|
291
|
+
defval = None
|
292
|
+
parameters.append([(name, defval), False])
|
293
|
+
|
294
|
+
# Match the supplied arguments against the function parameters.
|
295
|
+
|
296
|
+
# 1. Match the positional arguments.
|
297
|
+
for i in range(num_positional_args):
|
298
|
+
if i < len(parameters):
|
299
|
+
parameters[i][1] = True
|
300
|
+
elif called.args.vararg is not None:
|
301
|
+
# The remaining positional arguments get assigned to the *args
|
302
|
+
# parameter.
|
303
|
+
break
|
304
|
+
else:
|
305
|
+
# Too many positional arguments.
|
306
|
+
self.add_message('E1121', node=node)
|
307
|
+
break
|
308
|
+
|
309
|
+
# 2. Match the keyword arguments.
|
310
|
+
for keyword in keyword_args:
|
311
|
+
if keyword in parameter_name_to_index:
|
312
|
+
i = parameter_name_to_index[keyword]
|
313
|
+
if parameters[i][1]:
|
314
|
+
# Duplicate definition of function parameter.
|
315
|
+
self.add_message('E1124', node=node, args=keyword)
|
316
|
+
else:
|
317
|
+
parameters[i][1] = True
|
318
|
+
elif called.args.kwarg is not None:
|
319
|
+
# The keyword argument gets assigned to the **kwargs parameter.
|
320
|
+
pass
|
321
|
+
else:
|
322
|
+
# Unexpected keyword argument.
|
323
|
+
self.add_message('E1123', node=node, args=keyword)
|
324
|
+
|
325
|
+
# 3. Match the *args, if any. Note that Python actually processes
|
326
|
+
# *args _before_ any keyword arguments, but we wait until after
|
327
|
+
# looking at the keyword arguments so as to make a more conservative
|
328
|
+
# guess at how many values are in the *args sequence.
|
329
|
+
if node.starargs is not None:
|
330
|
+
for i in range(num_positional_args, len(parameters)):
|
331
|
+
[(name, defval), assigned] = parameters[i]
|
332
|
+
# Assume that *args provides just enough values for all
|
333
|
+
# non-default parameters after the last parameter assigned by
|
334
|
+
# the positional arguments but before the first parameter
|
335
|
+
# assigned by the keyword arguments. This is the best we can
|
336
|
+
# get without generating any false positives.
|
337
|
+
if (defval is not None) or assigned:
|
338
|
+
break
|
339
|
+
parameters[i][1] = True
|
340
|
+
|
341
|
+
# 4. Match the **kwargs, if any.
|
342
|
+
if node.kwargs is not None:
|
343
|
+
for i, [(name, defval), assigned] in enumerate(parameters):
|
344
|
+
# Assume that *kwargs provides values for all remaining
|
345
|
+
# unassigned named parameters.
|
346
|
+
if name is not None:
|
347
|
+
parameters[i][1] = True
|
348
|
+
else:
|
349
|
+
# **kwargs can't assign to tuples.
|
350
|
+
pass
|
351
|
+
|
352
|
+
# Check that any parameters without a default have been assigned
|
353
|
+
# values.
|
354
|
+
for [(name, defval), assigned] in parameters:
|
355
|
+
if (defval is None) and not assigned:
|
356
|
+
if name is None:
|
357
|
+
display = '<tuple>'
|
358
|
+
else:
|
359
|
+
display_name = repr(name)
|
360
|
+
self.add_message('E1120', node=node, args=display_name)
|
361
|
+
|
362
|
+
def register(linter):
|
363
|
+
"""required method to auto register this checker """
|
364
|
+
linter.register_checker(TypeChecker(linter))
|