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
Binary file
|
@@ -0,0 +1,250 @@
|
|
1
|
+
#
|
2
|
+
# javadoc.py: javadoc docstring parsing
|
3
|
+
# Edward Loper
|
4
|
+
#
|
5
|
+
# Created [07/03/03 12:37 PM]
|
6
|
+
# $Id: javadoc.py,v 1.1 2009/11/26 13:20:51 casa Exp $
|
7
|
+
#
|
8
|
+
|
9
|
+
"""
|
10
|
+
Epydoc parser for U{Javadoc<http://java.sun.com/j2se/javadoc/>}
|
11
|
+
docstrings. Javadoc is an HTML-based markup language that was
|
12
|
+
developed for documenting Java APIs with inline comments. It consists
|
13
|
+
of raw HTML, augmented by Javadoc tags. There are two types of
|
14
|
+
Javadoc tag:
|
15
|
+
|
16
|
+
- X{Javadoc block tags} correspond to Epydoc fields. They are
|
17
|
+
marked by starting a line with a string of the form \"C{@M{tag}
|
18
|
+
[M{arg}]}\", where C{M{tag}} indicates the type of block, and
|
19
|
+
C{M{arg}} is an optional argument. (For fields that take
|
20
|
+
arguments, Javadoc assumes that the single word immediately
|
21
|
+
following the tag is an argument; multi-word arguments cannot be
|
22
|
+
used with javadoc.)
|
23
|
+
|
24
|
+
- X{inline Javadoc tags} are used for inline markup. In particular,
|
25
|
+
epydoc uses them for crossreference links between documentation.
|
26
|
+
Inline tags may appear anywhere in the text, and have the form
|
27
|
+
\"C{{@M{tag} M{[args...]}}}\", where C{M{tag}} indicates the
|
28
|
+
type of inline markup, and C{M{args}} are optional arguments.
|
29
|
+
|
30
|
+
Epydoc supports all Javadoc tags, I{except}:
|
31
|
+
- C{{@docRoot}}, which gives the (relative) URL of the generated
|
32
|
+
documentation's root.
|
33
|
+
- C{{@inheritDoc}}, which copies the documentation of the nearest
|
34
|
+
overridden object. This can be used to combine the documentation
|
35
|
+
of the overridden object with the documentation of the
|
36
|
+
overridding object.
|
37
|
+
- C{@serial}, C{@serialField}, and C{@serialData} which describe the
|
38
|
+
serialization (pickling) of an object.
|
39
|
+
- C{{@value}}, which copies the value of a constant.
|
40
|
+
|
41
|
+
@warning: Epydoc only supports HTML output for Javadoc docstrings.
|
42
|
+
"""
|
43
|
+
__docformat__ = 'epytext en'
|
44
|
+
|
45
|
+
# Imports
|
46
|
+
import re
|
47
|
+
from xml.dom.minidom import *
|
48
|
+
from epydoc.markup import *
|
49
|
+
|
50
|
+
def parse_docstring(docstring, errors, **options):
|
51
|
+
"""
|
52
|
+
Parse the given docstring, which is formatted using Javadoc; and
|
53
|
+
return a C{ParsedDocstring} representation of its contents.
|
54
|
+
@param docstring: The docstring to parse
|
55
|
+
@type docstring: C{string}
|
56
|
+
@param errors: A list where any errors generated during parsing
|
57
|
+
will be stored.
|
58
|
+
@type errors: C{list} of L{ParseError}
|
59
|
+
@param options: Extra options. Unknown options are ignored.
|
60
|
+
Currently, no extra options are defined.
|
61
|
+
@rtype: L{ParsedDocstring}
|
62
|
+
"""
|
63
|
+
return ParsedJavadocDocstring(docstring, errors)
|
64
|
+
|
65
|
+
class ParsedJavadocDocstring(ParsedDocstring):
|
66
|
+
"""
|
67
|
+
An encoded version of a Javadoc docstring. Since Javadoc is a
|
68
|
+
fairly simple markup language, we don't do any processing in
|
69
|
+
advance; instead, we wait to split fields or resolve
|
70
|
+
crossreference links until we need to.
|
71
|
+
|
72
|
+
@group Field Splitting: split_fields, _ARG_FIELDS, _FIELD_RE
|
73
|
+
@cvar _ARG_FIELDS: A list of the fields that take arguments.
|
74
|
+
Since Javadoc doesn't mark arguments in any special way, we
|
75
|
+
must consult this list to decide whether the first word of a
|
76
|
+
field is an argument or not.
|
77
|
+
@cvar _FIELD_RE: A regular expression used to search for Javadoc
|
78
|
+
block tags.
|
79
|
+
|
80
|
+
@group HTML Output: to_html, _LINK_SPLIT_RE, _LINK_RE
|
81
|
+
@cvar _LINK_SPLIT_RE: A regular expression used to search for
|
82
|
+
Javadoc inline tags.
|
83
|
+
@cvar _LINK_RE: A regular expression used to process Javadoc
|
84
|
+
inline tags.
|
85
|
+
"""
|
86
|
+
def __init__(self, docstring, errors=None):
|
87
|
+
"""
|
88
|
+
Create a new C{ParsedJavadocDocstring}.
|
89
|
+
|
90
|
+
@param docstring: The docstring that should be used to
|
91
|
+
construct this C{ParsedJavadocDocstring}.
|
92
|
+
@type docstring: C{string}
|
93
|
+
@param errors: A list where any errors generated during
|
94
|
+
parsing will be stored. If no list is given, then
|
95
|
+
all errors are ignored.
|
96
|
+
@type errors: C{list} of L{ParseError}
|
97
|
+
"""
|
98
|
+
self._docstring = docstring
|
99
|
+
if errors is None: errors = []
|
100
|
+
self._check_links(errors)
|
101
|
+
|
102
|
+
#////////////////////////////////////////////////////////////
|
103
|
+
# Field Splitting
|
104
|
+
#////////////////////////////////////////////////////////////
|
105
|
+
|
106
|
+
_ARG_FIELDS = ('group variable var type cvariable cvar ivariable '+
|
107
|
+
'ivar param '+
|
108
|
+
'parameter arg argument raise raises exception '+
|
109
|
+
'except deffield newfield keyword kwarg kwparam').split()
|
110
|
+
_FIELD_RE = re.compile(r'(^\s*\@\w+[\s$])', re.MULTILINE)
|
111
|
+
|
112
|
+
# Inherit docs from ParsedDocstring.
|
113
|
+
def split_fields(self, errors=None):
|
114
|
+
|
115
|
+
# Split the docstring into an alternating list of field tags
|
116
|
+
# and text (odd pieces are field tags).
|
117
|
+
pieces = self._FIELD_RE.split(self._docstring)
|
118
|
+
|
119
|
+
# The first piece is the description.
|
120
|
+
descr = ParsedJavadocDocstring(pieces[0])
|
121
|
+
|
122
|
+
# The remaining pieces are the block fields (alternating tags
|
123
|
+
# and bodies; odd pieces are tags).
|
124
|
+
fields = []
|
125
|
+
for i in range(1, len(pieces)):
|
126
|
+
if i%2 == 1:
|
127
|
+
# Get the field tag.
|
128
|
+
tag = pieces[i].strip()[1:]
|
129
|
+
else:
|
130
|
+
# Get the field argument (if appropriate).
|
131
|
+
if tag in self._ARG_FIELDS:
|
132
|
+
subpieces = pieces[i].strip().split(None, 1)+['','']
|
133
|
+
(arg, body) = subpieces[:2]
|
134
|
+
else:
|
135
|
+
(arg, body) = (None, pieces[i])
|
136
|
+
|
137
|
+
# Special processing for @see fields, since Epydoc
|
138
|
+
# allows unrestricted text in them, but Javadoc just
|
139
|
+
# uses them for xref links:
|
140
|
+
if tag == 'see' and body:
|
141
|
+
if body[0] in '"\'':
|
142
|
+
if body[-1] == body[0]: body = body[1:-1]
|
143
|
+
elif body[0] == '<': pass
|
144
|
+
else: body = '{@link %s}' % body
|
145
|
+
|
146
|
+
# Construct the field.
|
147
|
+
parsed_body = ParsedJavadocDocstring(body)
|
148
|
+
fields.append(Field(tag, arg, parsed_body))
|
149
|
+
|
150
|
+
if pieces[0].strip():
|
151
|
+
return (descr, fields)
|
152
|
+
else:
|
153
|
+
return (None, fields)
|
154
|
+
|
155
|
+
#////////////////////////////////////////////////////////////
|
156
|
+
# HTML Output.
|
157
|
+
#////////////////////////////////////////////////////////////
|
158
|
+
|
159
|
+
_LINK_SPLIT_RE = re.compile(r'({@link(?:plain)?\s[^}]+})')
|
160
|
+
_LINK_RE = re.compile(r'{@link(?:plain)?\s+' + r'([\w#.]+)' +
|
161
|
+
r'(?:\([^\)]*\))?' + r'(\s+.*)?' + r'}')
|
162
|
+
|
163
|
+
# Inherit docs from ParsedDocstring.
|
164
|
+
def to_html(self, docstring_linker, **options):
|
165
|
+
# Split the docstring into an alternating list of HTML and
|
166
|
+
# links (odd pieces are links).
|
167
|
+
pieces = self._LINK_SPLIT_RE.split(self._docstring)
|
168
|
+
|
169
|
+
# This function is used to translate {@link ...}s to HTML.
|
170
|
+
translate_xref = docstring_linker.translate_identifier_xref
|
171
|
+
|
172
|
+
# Build up the HTML string from the pieces. For HTML pieces
|
173
|
+
# (even), just add it to html. For link pieces (odd), use
|
174
|
+
# docstring_linker to translate the crossreference link to
|
175
|
+
# HTML for us.
|
176
|
+
html = ''
|
177
|
+
for i in range(len(pieces)):
|
178
|
+
if i%2 == 0:
|
179
|
+
html += pieces[i]
|
180
|
+
else:
|
181
|
+
# Decompose the link into pieces.
|
182
|
+
m = self._LINK_RE.match(pieces[i])
|
183
|
+
if m is None: continue # Error flagged by _check_links
|
184
|
+
(target, name) = m.groups()
|
185
|
+
|
186
|
+
# Normalize the target name.
|
187
|
+
if target[0] == '#': target = target[1:]
|
188
|
+
target = target.replace('#', '.')
|
189
|
+
target = re.sub(r'\(.*\)', '', target)
|
190
|
+
|
191
|
+
# Provide a name, if it wasn't specified.
|
192
|
+
if name is None: name = target
|
193
|
+
else: name = name.strip()
|
194
|
+
|
195
|
+
# Use docstring_linker to convert the name to html.
|
196
|
+
html += translate_xref(target, name)
|
197
|
+
return html
|
198
|
+
|
199
|
+
def _check_links(self, errors):
|
200
|
+
"""
|
201
|
+
Make sure that all @{link}s are valid. We need a separate
|
202
|
+
method for ths because we want to do this at parse time, not
|
203
|
+
html output time. Any errors found are appended to C{errors}.
|
204
|
+
"""
|
205
|
+
pieces = self._LINK_SPLIT_RE.split(self._docstring)
|
206
|
+
linenum = 0
|
207
|
+
for i in range(len(pieces)):
|
208
|
+
if i%2 == 1 and not self._LINK_RE.match(pieces[i]):
|
209
|
+
estr = 'Bad link %r' % pieces[i]
|
210
|
+
errors.append(ParseError(estr, linenum, is_fatal=0))
|
211
|
+
linenum += pieces[i].count('\n')
|
212
|
+
|
213
|
+
#////////////////////////////////////////////////////////////
|
214
|
+
# Plaintext Output.
|
215
|
+
#////////////////////////////////////////////////////////////
|
216
|
+
|
217
|
+
# Inherit docs from ParsedDocstring. Since we don't define
|
218
|
+
# to_latex, this is used when generating latex output.
|
219
|
+
def to_plaintext(self, docstring_linker, **options):
|
220
|
+
return self._docstring
|
221
|
+
|
222
|
+
_SUMMARY_RE = re.compile(r'(\s*[\w\W]*?\.)(\s|$)')
|
223
|
+
|
224
|
+
# Jeff's hack to get summary working
|
225
|
+
def summary(self):
|
226
|
+
# Drop tags
|
227
|
+
doc = "\n".join([ row for row in self._docstring.split('\n')
|
228
|
+
if not row.lstrip().startswith('@') ])
|
229
|
+
|
230
|
+
m = self._SUMMARY_RE.match(doc)
|
231
|
+
if m:
|
232
|
+
other = doc[m.end():]
|
233
|
+
return (ParsedJavadocDocstring(m.group(1)),
|
234
|
+
other != '' and not other.isspace())
|
235
|
+
|
236
|
+
else:
|
237
|
+
parts = doc.strip('\n').split('\n', 1)
|
238
|
+
if len(parts) == 1:
|
239
|
+
summary = parts[0]
|
240
|
+
other = False
|
241
|
+
else:
|
242
|
+
summary = parts[0] + '...'
|
243
|
+
other = True
|
244
|
+
|
245
|
+
return ParsedJavadocDocstring(summary), other
|
246
|
+
|
247
|
+
# def concatenate(self, other):
|
248
|
+
# if not isinstance(other, ParsedJavadocDocstring):
|
249
|
+
# raise ValueError, 'Could not concatenate docstrings'
|
250
|
+
# return ParsedJavadocDocstring(self._docstring+other._docstring)
|
Binary file
|
@@ -0,0 +1,78 @@
|
|
1
|
+
#
|
2
|
+
# plaintext.py: plaintext docstring parsing
|
3
|
+
# Edward Loper
|
4
|
+
#
|
5
|
+
# Created [04/10/01 12:00 AM]
|
6
|
+
# $Id: plaintext.py,v 1.1 2009/11/26 13:20:51 casa Exp $
|
7
|
+
#
|
8
|
+
|
9
|
+
"""
|
10
|
+
Parser for plaintext docstrings. Plaintext docstrings are rendered as
|
11
|
+
verbatim output, preserving all whitespace.
|
12
|
+
"""
|
13
|
+
__docformat__ = 'epytext en'
|
14
|
+
|
15
|
+
from epydoc.markup import *
|
16
|
+
from epydoc.util import plaintext_to_html, plaintext_to_latex
|
17
|
+
|
18
|
+
def parse_docstring(docstring, errors, **options):
|
19
|
+
"""
|
20
|
+
@return: A pair C{(M{d}, M{e})}, where C{M{d}} is a
|
21
|
+
C{ParsedDocstring} that encodes the contents of the given
|
22
|
+
plaintext docstring; and C{M{e}} is a list of errors that were
|
23
|
+
generated while parsing the docstring.
|
24
|
+
@rtype: C{L{ParsedPlaintextDocstring}, C{list} of L{ParseError}}
|
25
|
+
"""
|
26
|
+
return ParsedPlaintextDocstring(docstring, **options)
|
27
|
+
|
28
|
+
class ParsedPlaintextDocstring(ParsedDocstring):
|
29
|
+
def __init__(self, text, **options):
|
30
|
+
self._verbatim = options.get('verbatim', 1)
|
31
|
+
if text is None: raise ValueError, 'Bad text value (expected a str)'
|
32
|
+
self._text = text
|
33
|
+
|
34
|
+
def to_html(self, docstring_linker, **options):
|
35
|
+
if options.get('verbatim', self._verbatim) == 0:
|
36
|
+
return plaintext_to_html(self.to_plaintext(docstring_linker))
|
37
|
+
else:
|
38
|
+
return ParsedDocstring.to_html(self, docstring_linker, **options)
|
39
|
+
|
40
|
+
def to_latex(self, docstring_linker, **options):
|
41
|
+
if options.get('verbatim', self._verbatim) == 0:
|
42
|
+
return plaintext_to_latex(self.to_plaintext(docstring_linker))
|
43
|
+
else:
|
44
|
+
return ParsedDocstring.to_latex(self, docstring_linker, **options)
|
45
|
+
|
46
|
+
def to_plaintext(self, docstring_linker, **options):
|
47
|
+
if 'indent' in options:
|
48
|
+
indent = options['indent']
|
49
|
+
lines = self._text.split('\n')
|
50
|
+
return '\n'.join([' '*indent+l for l in lines])+'\n'
|
51
|
+
return self._text+'\n'
|
52
|
+
|
53
|
+
_SUMMARY_RE = re.compile(r'(\s*[\w\W]*?(?:\.(\s|$)|[\n][\t ]*[\n]))')
|
54
|
+
|
55
|
+
def summary(self):
|
56
|
+
m = self._SUMMARY_RE.match(self._text)
|
57
|
+
if m:
|
58
|
+
other = self._text[m.end():]
|
59
|
+
return (ParsedPlaintextDocstring(m.group(1), verbatim=0),
|
60
|
+
other != '' and not other.isspace())
|
61
|
+
else:
|
62
|
+
parts = self._text.strip('\n').split('\n', 1)
|
63
|
+
if len(parts) == 1:
|
64
|
+
summary = parts[0]
|
65
|
+
other = False
|
66
|
+
else:
|
67
|
+
summary = parts[0] + '...'
|
68
|
+
other = True
|
69
|
+
|
70
|
+
return ParsedPlaintextDocstring(summary, verbatim=0), other
|
71
|
+
|
72
|
+
# def concatenate(self, other):
|
73
|
+
# if not isinstance(other, ParsedPlaintextDocstring):
|
74
|
+
# raise ValueError, 'Could not concatenate docstrings'
|
75
|
+
# text = self._text+other._text
|
76
|
+
# options = self._options.copy()
|
77
|
+
# options.update(other._options)
|
78
|
+
# return ParsedPlaintextDocstring(text, options)
|
Binary file
|