exercism-analysis 0.1.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.
- checksums.yaml +7 -0
- data/exercism-analysis.gemspec +30 -0
- data/lib/exercism-analysis.rb +38 -0
- data/lib/exercism-analysis/adapters/adapter.rb +23 -0
- data/lib/exercism-analysis/adapters/clojure.rb +13 -0
- data/lib/exercism-analysis/adapters/go.rb +19 -0
- data/lib/exercism-analysis/adapters/javascript.rb +13 -0
- data/lib/exercism-analysis/adapters/python.rb +13 -0
- data/lib/exercism-analysis/adapters/ruby.rb +19 -0
- data/lib/exercism-analysis/analysis.rb +18 -0
- data/lib/exercism-analysis/analyzers/analyzer.rb +54 -0
- data/lib/exercism-analysis/analyzers/clojure/kibit.rb +25 -0
- data/lib/exercism-analysis/analyzers/go/golint.rb +23 -0
- data/lib/exercism-analysis/analyzers/javascript/jslint.rb +24 -0
- data/lib/exercism-analysis/analyzers/python/pylint.rb +24 -0
- data/lib/exercism-analysis/analyzers/ruby/control_flow.rb +21 -0
- data/lib/exercism-analysis/analyzers/ruby/enumerable_condition.rb +21 -0
- data/lib/exercism-analysis/analyzers/ruby/for_loop.rb +29 -0
- data/lib/exercism-analysis/analyzers/ruby/indentation.rb +21 -0
- data/lib/exercism-analysis/analyzers/ruby/iter_mutation.rb +37 -0
- data/lib/exercism-analysis/analyzers/ruby/output.rb +20 -0
- data/lib/exercism-analysis/analyzers/ruby/range.rb +28 -0
- data/lib/exercism-analysis/analyzers/ruby/roodi.rb +19 -0
- data/lib/exercism-analysis/analyzers/ruby/send.rb +25 -0
- data/lib/exercism-analysis/analyzers/ruby/shebang.rb +23 -0
- data/lib/exercism-analysis/analyzers/ruby/tab.rb +38 -0
- data/lib/exercism-analysis/processors/call_processor.rb +39 -0
- data/lib/exercism-analysis/processors/control_flow_processor.rb +27 -0
- data/lib/exercism-analysis/processors/enumerable_condition_processor.rb +31 -0
- data/lib/exercism-analysis/processors/for_loop_processor.rb +21 -0
- data/lib/exercism-analysis/processors/indentation_processor.rb +69 -0
- data/lib/exercism-analysis/processors/iter_mutation_processor.rb +50 -0
- data/lib/exercism-analysis/processors/processor.rb +34 -0
- data/lib/exercism-analysis/processors/range_processor.rb +23 -0
- data/lib/exercism-analysis/processors/send_processor.rb +23 -0
- data/lib/exercism-analysis/templates/each_to_map.rb +29 -0
- data/lib/exercism-analysis/templates/each_to_select.rb +31 -0
- data/lib/exercism-analysis/templates/range_exclusive.rb +19 -0
- data/lib/exercism-analysis/templates/template.rb +29 -0
- data/vendor/clojure/kibit-runner/LICENSE +214 -0
- data/vendor/clojure/kibit-runner/project.clj +10 -0
- data/vendor/clojure/kibit-runner/src/kibit_runner/core.clj +17 -0
- data/vendor/clojure/kibit-runner/target/kibit-runner-0.1.0-SNAPSHOT-standalone.jar +0 -0
- data/vendor/clojure/kibit-runner/target/kibit-runner-0.1.0-SNAPSHOT.jar +0 -0
- data/vendor/clojure/kibit-runner/target/stale/extract-native.dependencies +1 -0
- data/vendor/go/src/github.com/golang/lint/LICENSE +27 -0
- data/vendor/go/src/github.com/golang/lint/README +59 -0
- data/vendor/go/src/github.com/golang/lint/golint/golint.go +67 -0
- data/vendor/go/src/github.com/golang/lint/lint.go +1061 -0
- data/vendor/go/src/runner/golint_runner.go +23 -0
- data/vendor/javascript/jshint_runner.js +6 -0
- data/vendor/javascript/node_modules/jshint/README.md +47 -0
- data/vendor/javascript/node_modules/jshint/bin/apply +6 -0
- data/vendor/javascript/node_modules/jshint/bin/build +36 -0
- data/vendor/javascript/node_modules/jshint/bin/changelog +36 -0
- data/vendor/javascript/node_modules/jshint/bin/jshint +3 -0
- data/vendor/javascript/node_modules/jshint/bin/land +34 -0
- data/vendor/javascript/node_modules/jshint/data/ascii-identifier-data.js +22 -0
- data/vendor/javascript/node_modules/jshint/data/non-ascii-identifier-part-only.js +1570 -0
- data/vendor/javascript/node_modules/jshint/data/non-ascii-identifier-start.js +48477 -0
- data/vendor/javascript/node_modules/jshint/dist/jshint-rhino.js +60642 -0
- data/vendor/javascript/node_modules/jshint/dist/jshint.js +60525 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/README.md +196 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/cli.js +1139 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/cat.js +17 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/command.js +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/echo.js +54 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/glob.js +6 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/long_desc.js +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/progress.js +11 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/sort.js +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/spinner.js +9 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/static.coffee +27 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/examples/static.js +25 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/index.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/LICENSE +27 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/README.md +250 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/examples/g.js +9 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/examples/usr-local.js +9 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/glob.js +728 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/LICENSE +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/README.md +42 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/inherits.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/package.json +51 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/test.js +25 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/package.json +58 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/00-setup.js +176 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/bash-comparison.js +63 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/bash-results.json +351 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/cwd-test.js +55 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/globstar-match.js +19 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/mark.js +118 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/new-glob-optional-options.js +10 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/nocase-nomagic.js +113 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/pause-resume.js +73 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/readme-issue.js +36 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/root-nomount.js +39 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/root.js +46 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/stat.js +32 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/node_modules/glob/test/zz-cleanup.js +11 -0
- data/vendor/javascript/node_modules/jshint/node_modules/cli/package.json +70 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/LICENCE +19 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/README.md +33 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/index.js +86 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/LICENCE +19 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/README.md +45 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/index.js +5 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/package.json +89 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/seed.js +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/test/index.js +28 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/node_modules/date-now/test/static/index.html +10 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/package.json +88 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/test/index.js +67 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/test/static/index.html +12 -0
- data/vendor/javascript/node_modules/jshint/node_modules/console-browserify/test/static/test-adapter.js +53 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/Gruntfile.js +48 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/LICENSE-MIT +22 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/README.md +75 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/lib/exit.js +41 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/package.json +69 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/exit_test.js +121 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/10-stderr.txt +10 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/10-stdout-stderr.txt +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/10-stdout.txt +10 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/100-stderr.txt +100 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/100-stdout-stderr.txt +200 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/100-stdout.txt +100 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/1000-stderr.txt +1000 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/1000-stdout-stderr.txt +2000 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/1000-stdout.txt +1000 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/create-files.sh +8 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/log-broken.js +23 -0
- data/vendor/javascript/node_modules/jshint/node_modules/exit/test/fixtures/log.js +25 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/LICENSE +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/README.md +83 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/CollectingHandler.js +55 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/FeedHandler.js +95 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/Parser.js +337 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/ProxyHandler.js +27 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/Stream.js +35 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/Tokenizer.js +891 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/WritableStream.js +21 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/lib/index.js +68 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domelementtype/LICENSE +11 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domelementtype/index.js +14 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domelementtype/package.json +40 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domelementtype/readme.md +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/LICENSE +11 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/index.js +211 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/package.json +68 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/readme.md +102 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/01-basic.json +57 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/02-single_tag_1.json +21 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/03-single_tag_2.json +21 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/04-unescaped_in_script.json +27 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/05-tags_in_comment.json +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/06-comment_in_script.json +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/07-unescaped_in_style.json +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/08-extra_spaces_in_tag.json +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/09-unquoted_attrib.json +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/10-singular_attribute.json +15 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/11-text_outside_tags.json +40 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/12-text_only.json +11 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/13-comment_in_text.json +19 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/14-comment_in_text_in_script.json +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/15-non-verbose.json +22 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/16-normalize_whitespace.json +47 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/17-xml_namespace.json +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/18-enforce_empty_tags.json +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/19-ignore_empty_tags.json +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/20-template_script_tags.json +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/21-conditional_comments.json +15 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/22-lowercase_tags.json +41 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/cases/23-dom-lvl1.json +121 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domhandler/test/tests.js +58 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/LICENSE +11 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/index.js +14 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/helpers.js +141 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/legacy.js +87 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/manipulation.js +77 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/querying.js +94 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/stringify.js +93 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/lib/traversal.js +24 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/package.json +71 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/readme.md +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/test/fixture.js +6 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/test/tests/helpers.js +89 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/test/tests/legacy.js +119 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/domutils/test/utils.js +9 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/LICENSE +11 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/index.js +31 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/lib/decode.js +72 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js +26 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/lib/encode.js +48 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/maps/decode.json +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/maps/entities.json +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/maps/legacy.json +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/maps/xml.json +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/package.json +79 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/readme.md +31 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/test/mocha.opts +2 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/entities/test/test.js +150 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/LICENSE +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/README.md +15 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/duplex.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/float.patch +923 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_readable.js +944 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_transform.js +209 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_writable.js +472 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/package.json +51 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/package.json +54 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/index.js +200 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/package.json +53 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/package.json +68 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/passthrough.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/readable.js +7 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/transform.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/node_modules/readable-stream/writable.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/package.json +90 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/01-events.js +9 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/02-stream.js +23 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/03-feed.js +19 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/Atom_Example.xml +25 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/Attributes.html +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/Basic.html +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/RDF_Example.xml +63 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Documents/RSS_Example.xml +48 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/01-simple.json +44 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/02-template.json +63 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/03-lowercase_tags.json +46 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/04-cdata.json +50 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/05-cdata-special.json +35 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/06-leading-lt.json +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/07-self-closing.json +67 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/08-implicit-close-tags.json +59 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/09-attributes.json +68 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/10-crazy-attrib.json +52 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/11-script_in_script.json +54 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/12-long-comment-end.json +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/13-long-cdata-end.json +22 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/14-implicit-open-tags.json +27 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/15-lt-whitespace.json +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/16-double_attribs.json +45 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/17-numeric_entities.json +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/18-legacy_entities.json +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/19-named_entities.json +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/20-xml_entities.json +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/21-entity_in_attribute.json +38 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/22-double_brackets.json +41 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/23-legacy_entity_fail.json +16 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/24-special_special.json +133 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/25-empty_tag_name.json +13 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/26-not-quite-closed.json +35 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/27-entities_in_attributes.json +62 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/28-cdata_in_html.json +9 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/29-comment_edge-cases.json +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Events/30-cdata_edge-cases.json +22 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Feeds/01-rss.js +34 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Feeds/02-atom.js +18 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Feeds/03-rdf.js +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/01-basic.json +83 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/02-RSS.json +1093 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/03-Atom.json +644 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/04-RDF.json +1399 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/Stream/05-Attributes.json +354 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/api.js +63 -0
- data/vendor/javascript/node_modules/jshint/node_modules/htmlparser2/test/test-helper.js +83 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/LICENSE +23 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/README.md +218 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/minimatch.js +1061 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/CONTRIBUTORS +14 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/LICENSE +23 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/README.md +97 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js +252 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/package.json +50 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/test/basic.js +369 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/test/foreach.js +52 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js +50 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/package.json +58 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/node_modules/sigmund/test/basic.js +24 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/package.json +57 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/basic.js +399 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/brace-expand.js +33 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/caching.js +14 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/defaults.js +274 -0
- data/vendor/javascript/node_modules/jshint/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/LICENSE +26 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/README.md +569 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/bin/shjs +51 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/global.js +3 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/make.js +47 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/package.json +61 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/scripts/generate-docs.js +21 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/scripts/run-tests.js +50 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/shell.js +157 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/cat.js +43 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/cd.js +19 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/chmod.js +208 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/common.js +203 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/cp.js +201 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/dirs.js +191 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/echo.js +20 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/error.js +10 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/exec.js +181 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/find.js +51 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/grep.js +52 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/ln.js +53 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/ls.js +126 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/mkdir.js +68 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/mv.js +80 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/popd.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/pushd.js +1 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/pwd.js +11 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/rm.js +145 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/sed.js +43 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/tempdir.js +56 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/test.js +85 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/to.js +29 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/toEnd.js +29 -0
- data/vendor/javascript/node_modules/jshint/node_modules/shelljs/src/which.js +83 -0
- data/vendor/javascript/node_modules/jshint/node_modules/strip-json-comments/cli.js +41 -0
- data/vendor/javascript/node_modules/jshint/node_modules/strip-json-comments/package.json +76 -0
- data/vendor/javascript/node_modules/jshint/node_modules/strip-json-comments/readme.md +74 -0
- data/vendor/javascript/node_modules/jshint/node_modules/strip-json-comments/strip-json-comments.js +64 -0
- data/vendor/javascript/node_modules/jshint/node_modules/underscore/LICENSE +23 -0
- data/vendor/javascript/node_modules/jshint/node_modules/underscore/README.md +22 -0
- data/vendor/javascript/node_modules/jshint/node_modules/underscore/package.json +66 -0
- data/vendor/javascript/node_modules/jshint/node_modules/underscore/underscore-min.js +6 -0
- data/vendor/javascript/node_modules/jshint/node_modules/underscore/underscore.js +1343 -0
- data/vendor/javascript/node_modules/jshint/package.json +80 -0
- data/vendor/javascript/node_modules/jshint/src/cli.js +731 -0
- data/vendor/javascript/node_modules/jshint/src/jshint.js +5023 -0
- data/vendor/javascript/node_modules/jshint/src/lex.js +1650 -0
- data/vendor/javascript/node_modules/jshint/src/messages.js +223 -0
- data/vendor/javascript/node_modules/jshint/src/platforms/rhino.js +115 -0
- data/vendor/javascript/node_modules/jshint/src/reg.js +38 -0
- data/vendor/javascript/node_modules/jshint/src/reporters/checkstyle.js +81 -0
- data/vendor/javascript/node_modules/jshint/src/reporters/default.js +34 -0
- data/vendor/javascript/node_modules/jshint/src/reporters/jslint_xml.js +57 -0
- data/vendor/javascript/node_modules/jshint/src/reporters/non_error.js +52 -0
- data/vendor/javascript/node_modules/jshint/src/state.js +28 -0
- data/vendor/javascript/node_modules/jshint/src/style.js +143 -0
- data/vendor/javascript/node_modules/jshint/src/vars.js +658 -0
- data/vendor/python/astroid/COPYING +339 -0
- data/vendor/python/astroid/COPYING.LESSER +510 -0
- data/vendor/python/astroid/ChangeLog +574 -0
- data/vendor/python/astroid/MANIFEST.in +9 -0
- data/vendor/python/astroid/README +56 -0
- data/vendor/python/astroid/README.Python3 +26 -0
- data/vendor/python/astroid/__init__.py +118 -0
- data/vendor/python/astroid/__init__.pyc +0 -0
- data/vendor/python/astroid/__pkginfo__.py +48 -0
- data/vendor/python/astroid/__pkginfo__.pyc +0 -0
- data/vendor/python/astroid/announce.txt +23 -0
- data/vendor/python/astroid/as_string.py +496 -0
- data/vendor/python/astroid/as_string.pyc +0 -0
- data/vendor/python/astroid/bases.py +618 -0
- data/vendor/python/astroid/bases.pyc +0 -0
- data/vendor/python/astroid/brain/py2gi.py +159 -0
- data/vendor/python/astroid/brain/py2gi.pyc +0 -0
- data/vendor/python/astroid/brain/py2mechanize.py +20 -0
- data/vendor/python/astroid/brain/py2mechanize.pyc +0 -0
- data/vendor/python/astroid/brain/py2qt4.py +25 -0
- data/vendor/python/astroid/brain/py2qt4.pyc +0 -0
- data/vendor/python/astroid/brain/py2stdlib.py +252 -0
- data/vendor/python/astroid/brain/py2stdlib.pyc +0 -0
- data/vendor/python/astroid/builder.py +238 -0
- data/vendor/python/astroid/builder.pyc +0 -0
- data/vendor/python/astroid/exceptions.py +51 -0
- data/vendor/python/astroid/exceptions.pyc +0 -0
- data/vendor/python/astroid/inference.py +393 -0
- data/vendor/python/astroid/inference.pyc +0 -0
- data/vendor/python/astroid/inspector.py +275 -0
- data/vendor/python/astroid/manager.py +336 -0
- data/vendor/python/astroid/manager.pyc +0 -0
- data/vendor/python/astroid/mixins.py +122 -0
- data/vendor/python/astroid/mixins.pyc +0 -0
- data/vendor/python/astroid/node_classes.py +928 -0
- data/vendor/python/astroid/node_classes.pyc +0 -0
- data/vendor/python/astroid/nodes.py +73 -0
- data/vendor/python/astroid/nodes.pyc +0 -0
- data/vendor/python/astroid/protocols.py +322 -0
- data/vendor/python/astroid/protocols.pyc +0 -0
- data/vendor/python/astroid/raw_building.py +361 -0
- data/vendor/python/astroid/raw_building.pyc +0 -0
- data/vendor/python/astroid/rebuilder.py +954 -0
- data/vendor/python/astroid/rebuilder.pyc +0 -0
- data/vendor/python/astroid/scoped_nodes.py +1118 -0
- data/vendor/python/astroid/scoped_nodes.pyc +0 -0
- data/vendor/python/astroid/setup.py +184 -0
- data/vendor/python/astroid/tox.ini +10 -0
- data/vendor/python/astroid/utils.py +236 -0
- data/vendor/python/astroid/utils.pyc +0 -0
- data/vendor/python/logilab/__init__.py +0 -0
- data/vendor/python/logilab/__init__.pyc +0 -0
- data/vendor/python/logilab/common/COPYING +339 -0
- data/vendor/python/logilab/common/COPYING.LESSER +510 -0
- data/vendor/python/logilab/common/ChangeLog +1517 -0
- data/vendor/python/logilab/common/MANIFEST.in +13 -0
- data/vendor/python/logilab/common/README +185 -0
- data/vendor/python/logilab/common/README.Python3 +29 -0
- data/vendor/python/logilab/common/__init__.py +171 -0
- data/vendor/python/logilab/common/__init__.pyc +0 -0
- data/vendor/python/logilab/common/__pkginfo__.py +53 -0
- data/vendor/python/logilab/common/__pkginfo__.pyc +0 -0
- data/vendor/python/logilab/common/announce.txt +25 -0
- data/vendor/python/logilab/common/bin/pytest +7 -0
- data/vendor/python/logilab/common/bin/pytest.bat +17 -0
- data/vendor/python/logilab/common/cache.py +114 -0
- data/vendor/python/logilab/common/changelog.py +236 -0
- data/vendor/python/logilab/common/changelog.pyc +0 -0
- data/vendor/python/logilab/common/clcommands.py +332 -0
- data/vendor/python/logilab/common/cli.py +208 -0
- data/vendor/python/logilab/common/compat.py +243 -0
- data/vendor/python/logilab/common/compat.pyc +0 -0
- data/vendor/python/logilab/common/configuration.py +1094 -0
- data/vendor/python/logilab/common/configuration.pyc +0 -0
- data/vendor/python/logilab/common/contexts.py +5 -0
- data/vendor/python/logilab/common/corbautils.py +117 -0
- data/vendor/python/logilab/common/daemon.py +100 -0
- data/vendor/python/logilab/common/date.py +333 -0
- data/vendor/python/logilab/common/dbf.py +229 -0
- data/vendor/python/logilab/common/debugger.py +210 -0
- data/vendor/python/logilab/common/decorators.py +281 -0
- data/vendor/python/logilab/common/decorators.pyc +0 -0
- data/vendor/python/logilab/common/deprecation.py +188 -0
- data/vendor/python/logilab/common/deprecation.pyc +0 -0
- data/vendor/python/logilab/common/fileutils.py +402 -0
- data/vendor/python/logilab/common/graph.py +276 -0
- data/vendor/python/logilab/common/graph.pyc +0 -0
- data/vendor/python/logilab/common/hg.py +130 -0
- data/vendor/python/logilab/common/interface.py +71 -0
- data/vendor/python/logilab/common/interface.pyc +0 -0
- data/vendor/python/logilab/common/logging_ext.py +193 -0
- data/vendor/python/logilab/common/modutils.py +695 -0
- data/vendor/python/logilab/common/modutils.pyc +0 -0
- data/vendor/python/logilab/common/optik_ext.py +391 -0
- data/vendor/python/logilab/common/optik_ext.pyc +0 -0
- data/vendor/python/logilab/common/optparser.py +90 -0
- data/vendor/python/logilab/common/proc.py +277 -0
- data/vendor/python/logilab/common/pyro_ext.py +180 -0
- data/vendor/python/logilab/common/pytest.py +1177 -0
- data/vendor/python/logilab/common/python-logilab-common.spec +184 -0
- data/vendor/python/logilab/common/registry.py +1113 -0
- data/vendor/python/logilab/common/setup.cfg +3 -0
- data/vendor/python/logilab/common/setup.py +189 -0
- data/vendor/python/logilab/common/shellutils.py +455 -0
- data/vendor/python/logilab/common/sphinx_ext.py +87 -0
- data/vendor/python/logilab/common/sphinxutils.py +122 -0
- data/vendor/python/logilab/common/table.py +925 -0
- data/vendor/python/logilab/common/tasksqueue.py +100 -0
- data/vendor/python/logilab/common/textutils.py +534 -0
- data/vendor/python/logilab/common/textutils.pyc +0 -0
- data/vendor/python/logilab/common/tree.py +369 -0
- data/vendor/python/logilab/common/tree.pyc +0 -0
- data/vendor/python/logilab/common/umessage.py +190 -0
- data/vendor/python/logilab/common/ureports/__init__.py +174 -0
- data/vendor/python/logilab/common/ureports/__init__.pyc +0 -0
- data/vendor/python/logilab/common/ureports/docbook_writer.py +139 -0
- data/vendor/python/logilab/common/ureports/html_writer.py +131 -0
- data/vendor/python/logilab/common/ureports/html_writer.pyc +0 -0
- data/vendor/python/logilab/common/ureports/nodes.py +201 -0
- data/vendor/python/logilab/common/ureports/nodes.pyc +0 -0
- data/vendor/python/logilab/common/ureports/text_writer.py +140 -0
- data/vendor/python/logilab/common/ureports/text_writer.pyc +0 -0
- data/vendor/python/logilab/common/urllib2ext.py +87 -0
- data/vendor/python/logilab/common/vcgutils.py +216 -0
- data/vendor/python/logilab/common/visitor.py +107 -0
- data/vendor/python/logilab/common/visitor.pyc +0 -0
- data/vendor/python/logilab/common/xmlrpcutils.py +131 -0
- data/vendor/python/logilab/common/xmlutils.py +61 -0
- data/vendor/python/pylint/CONTRIBUTORS.txt +38 -0
- data/vendor/python/pylint/COPYING +340 -0
- data/vendor/python/pylint/ChangeLog +1437 -0
- data/vendor/python/pylint/DEPENDS +3 -0
- data/vendor/python/pylint/MANIFEST.in +14 -0
- data/vendor/python/pylint/README +50 -0
- data/vendor/python/pylint/README.Python3 +37 -0
- data/vendor/python/pylint/__init__.py +44 -0
- data/vendor/python/pylint/__init__.pyc +0 -0
- data/vendor/python/pylint/__main__.py +3 -0
- data/vendor/python/pylint/__pkginfo__.py +74 -0
- data/vendor/python/pylint/__pkginfo__.pyc +0 -0
- data/vendor/python/pylint/bin/epylint +3 -0
- data/vendor/python/pylint/bin/epylint.bat +5 -0
- data/vendor/python/pylint/bin/pylint +3 -0
- data/vendor/python/pylint/bin/pylint-gui +3 -0
- data/vendor/python/pylint/bin/pylint-gui.bat +5 -0
- data/vendor/python/pylint/bin/pylint.bat +5 -0
- data/vendor/python/pylint/bin/pyreverse +3 -0
- data/vendor/python/pylint/bin/pyreverse.bat +5 -0
- data/vendor/python/pylint/bin/symilar +3 -0
- data/vendor/python/pylint/bin/symilar.bat +5 -0
- data/vendor/python/pylint/checkers/__init__.py +145 -0
- data/vendor/python/pylint/checkers/__init__.pyc +0 -0
- data/vendor/python/pylint/checkers/base.py +1141 -0
- data/vendor/python/pylint/checkers/base.pyc +0 -0
- data/vendor/python/pylint/checkers/classes.py +792 -0
- data/vendor/python/pylint/checkers/classes.pyc +0 -0
- data/vendor/python/pylint/checkers/design_analysis.py +367 -0
- data/vendor/python/pylint/checkers/design_analysis.pyc +0 -0
- data/vendor/python/pylint/checkers/exceptions.py +306 -0
- data/vendor/python/pylint/checkers/exceptions.pyc +0 -0
- data/vendor/python/pylint/checkers/format.py +943 -0
- data/vendor/python/pylint/checkers/format.pyc +0 -0
- data/vendor/python/pylint/checkers/imports.py +394 -0
- data/vendor/python/pylint/checkers/imports.pyc +0 -0
- data/vendor/python/pylint/checkers/logging.py +213 -0
- data/vendor/python/pylint/checkers/logging.pyc +0 -0
- data/vendor/python/pylint/checkers/misc.py +90 -0
- data/vendor/python/pylint/checkers/misc.pyc +0 -0
- data/vendor/python/pylint/checkers/newstyle.py +151 -0
- data/vendor/python/pylint/checkers/newstyle.pyc +0 -0
- data/vendor/python/pylint/checkers/raw_metrics.py +129 -0
- data/vendor/python/pylint/checkers/raw_metrics.pyc +0 -0
- data/vendor/python/pylint/checkers/similar.py +365 -0
- data/vendor/python/pylint/checkers/similar.pyc +0 -0
- data/vendor/python/pylint/checkers/stdlib.py +69 -0
- data/vendor/python/pylint/checkers/stdlib.pyc +0 -0
- data/vendor/python/pylint/checkers/strings.py +304 -0
- data/vendor/python/pylint/checkers/strings.pyc +0 -0
- data/vendor/python/pylint/checkers/typecheck.py +451 -0
- data/vendor/python/pylint/checkers/typecheck.pyc +0 -0
- data/vendor/python/pylint/checkers/utils.py +416 -0
- data/vendor/python/pylint/checkers/utils.pyc +0 -0
- data/vendor/python/pylint/checkers/variables.py +741 -0
- data/vendor/python/pylint/checkers/variables.pyc +0 -0
- data/vendor/python/pylint/config.py +156 -0
- data/vendor/python/pylint/config.pyc +0 -0
- data/vendor/python/pylint/epylint.py +175 -0
- data/vendor/python/pylint/gui.py +508 -0
- data/vendor/python/pylint/interfaces.py +72 -0
- data/vendor/python/pylint/interfaces.pyc +0 -0
- data/vendor/python/pylint/lint.py +1106 -0
- data/vendor/python/pylint/lint.pyc +0 -0
- data/vendor/python/pylint/pyreverse/__init__.py +5 -0
- data/vendor/python/pylint/pyreverse/diadefslib.py +233 -0
- data/vendor/python/pylint/pyreverse/diagrams.py +247 -0
- data/vendor/python/pylint/pyreverse/main.py +124 -0
- data/vendor/python/pylint/pyreverse/utils.py +131 -0
- data/vendor/python/pylint/pyreverse/writer.py +199 -0
- data/vendor/python/pylint/reporters/__init__.py +138 -0
- data/vendor/python/pylint/reporters/__init__.pyc +0 -0
- data/vendor/python/pylint/reporters/guireporter.py +28 -0
- data/vendor/python/pylint/reporters/guireporter.pyc +0 -0
- data/vendor/python/pylint/reporters/html.py +70 -0
- data/vendor/python/pylint/reporters/html.pyc +0 -0
- data/vendor/python/pylint/reporters/text.py +143 -0
- data/vendor/python/pylint/reporters/text.pyc +0 -0
- data/vendor/python/pylint/setup.cfg +3 -0
- data/vendor/python/pylint/setup.py +203 -0
- data/vendor/python/pylint/tox.ini +10 -0
- data/vendor/python/pylint/utils.py +744 -0
- data/vendor/python/pylint/utils.pyc +0 -0
- data/vendor/python/pylint_runner.py +22 -0
- metadata +675 -0
|
@@ -0,0 +1,574 @@
|
|
|
1
|
+
Change log for the astroid package (used to be astng)
|
|
2
|
+
=====================================================
|
|
3
|
+
|
|
4
|
+
--
|
|
5
|
+
* Function nodes can detect if they are decorated with subclasses
|
|
6
|
+
of builtin descriptors when determining their type
|
|
7
|
+
(`classmethod` and `staticmethod`).
|
|
8
|
+
|
|
9
|
+
2014-04-30 -- 1.1.1
|
|
10
|
+
* `Class.metaclass()` looks in ancestors when the current class
|
|
11
|
+
does not define explicitly a metaclass.
|
|
12
|
+
|
|
13
|
+
* Do not cache modules if a module with the same qname is already
|
|
14
|
+
known, and only return cached modules if both name and filepath
|
|
15
|
+
match. Fixes pylint Bitbucket issue #136.
|
|
16
|
+
|
|
17
|
+
2014-04-18 -- 1.1.0
|
|
18
|
+
* All class nodes are marked as new style classes for Py3k.
|
|
19
|
+
|
|
20
|
+
* Add a `metaclass` function to `Class` nodes to
|
|
21
|
+
retrieve their metaclass.
|
|
22
|
+
|
|
23
|
+
* Add a new YieldFrom node.
|
|
24
|
+
|
|
25
|
+
* Add support for inferring arguments to namedtuple invocations.
|
|
26
|
+
|
|
27
|
+
* Make sure that objects returned for namedtuple
|
|
28
|
+
inference have parents.
|
|
29
|
+
|
|
30
|
+
* Don't crash when inferring nodes from `with` clauses
|
|
31
|
+
with multiple context managers. Closes #18.
|
|
32
|
+
|
|
33
|
+
* Don't crash when a class has some __call__ method that is not
|
|
34
|
+
inferable. Closes #17.
|
|
35
|
+
|
|
36
|
+
* Unwrap instances found in `.ancestors()`, by using their _proxied
|
|
37
|
+
class.
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
2013-10-18 -- 1.0.1
|
|
42
|
+
* fix py3k/windows installation issue (issue #4)
|
|
43
|
+
|
|
44
|
+
* fix bug with namedtuple inference (issue #3)
|
|
45
|
+
|
|
46
|
+
* get back gobject introspection from pylint-brain
|
|
47
|
+
|
|
48
|
+
* fix some test failures under pypy and py3.3, though there is one remaining
|
|
49
|
+
in each of these platform (2.7 tests are all green)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
2013-07-29 -- 1.0.0
|
|
54
|
+
* Fix some omissions in py2stdlib's version of hashlib and
|
|
55
|
+
add a small test for it.
|
|
56
|
+
|
|
57
|
+
* Properly recognize methods annotated with abc.abstract{property,method}
|
|
58
|
+
as abstract.
|
|
59
|
+
|
|
60
|
+
* Allow transformation functions on any node, providing a
|
|
61
|
+
`register_transform` function on the manager instead of the
|
|
62
|
+
`register_transformer` to make it more flexible wrt node selection
|
|
63
|
+
|
|
64
|
+
* Use the new transformation API to provide support for namedtuple
|
|
65
|
+
(actually in pylint-brain, closes #8766)
|
|
66
|
+
|
|
67
|
+
* Added the test_utils module for building ASTs and
|
|
68
|
+
extracting deeply nested nodes for easier testing.
|
|
69
|
+
|
|
70
|
+
* Add support for py3k's keyword only arguments (PEP 3102)
|
|
71
|
+
|
|
72
|
+
* RENAME THE PROJECT to astroid
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
2013-04-16 -- 0.24.3
|
|
77
|
+
* #124360 [py3.3]: Don't crash on 'yield from' nodes
|
|
78
|
+
|
|
79
|
+
* #123062 [pylint-brain]: Use correct names for keywords for urlparse
|
|
80
|
+
|
|
81
|
+
* #123056 [pylint-brain]: Add missing methods for hashlib
|
|
82
|
+
|
|
83
|
+
* #123068: Fix inference for generator methods to correctly handle yields
|
|
84
|
+
in lambdas.
|
|
85
|
+
|
|
86
|
+
* #123068: Make sure .as_string() returns valid code for yields in
|
|
87
|
+
expressions.
|
|
88
|
+
|
|
89
|
+
* #47957: Set literals are now correctly treated as inference leaves.
|
|
90
|
+
|
|
91
|
+
* #123074: Add support for inference of subscript operations on dict
|
|
92
|
+
literals.
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
2013-02-27 -- 0.24.2
|
|
97
|
+
* pylint-brain: more subprocess.Popen faking (see #46273)
|
|
98
|
+
|
|
99
|
+
* #109562 [jython]: java modules have no __doc__, causing crash
|
|
100
|
+
|
|
101
|
+
* #120646 [py3]: fix for python3.3 _ast changes which may cause crash
|
|
102
|
+
|
|
103
|
+
* #109988 [py3]: test fixes
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
2012-10-05 -- 0.24.1
|
|
108
|
+
* #106191: fix __future__ absolute import w/ From node
|
|
109
|
+
|
|
110
|
+
* #50395: fix function fromlineno when some decorator is splited on
|
|
111
|
+
multiple lines (patch by Mark Gius)
|
|
112
|
+
|
|
113
|
+
* #92362: fix pyreverse crash on relative import
|
|
114
|
+
|
|
115
|
+
* #104041: fix crash 'module object has no file_encoding attribute'
|
|
116
|
+
|
|
117
|
+
* #4294 (pylint-brain): bad inference on mechanize.Browser.open
|
|
118
|
+
|
|
119
|
+
* #46273 (pylint-brain): bad inference subprocess.Popen.communicate
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
2012-07-18 -- 0.24.0
|
|
124
|
+
* include pylint brain extension, describing some stuff not properly understood until then.
|
|
125
|
+
(#100013, #53049, #23986, #72355)
|
|
126
|
+
|
|
127
|
+
* #99583: fix raw_building.object_build for pypy implementation
|
|
128
|
+
|
|
129
|
+
* use `open` rather than `file` in scoped_nodes as 2to3 miss it
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
2011-12-08 -- 0.23.1
|
|
134
|
+
* #62295: avoid "OSError: Too many open files" by moving
|
|
135
|
+
.file_stream as a Module property opening the file only when needed
|
|
136
|
+
|
|
137
|
+
* Lambda nodes should have a `name` attribute
|
|
138
|
+
|
|
139
|
+
* only call transformers if modname specified
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
2011-10-07 -- 0.23.0
|
|
144
|
+
* #77187: ancestor() only returns the first class when inheriting
|
|
145
|
+
from two classes coming from the same module
|
|
146
|
+
|
|
147
|
+
* #76159: putting module's parent directory on the path causes problems
|
|
148
|
+
linting when file names clash
|
|
149
|
+
|
|
150
|
+
* #74746: should return empty module when __main__ is imported (patch by
|
|
151
|
+
google)
|
|
152
|
+
|
|
153
|
+
* #74748: getitem protocal return constant value instead of a Const node
|
|
154
|
+
(patch by google)
|
|
155
|
+
|
|
156
|
+
* #77188: support lgc.decorators.classproperty
|
|
157
|
+
|
|
158
|
+
* #77253: provide a way for user code to register astng "transformers"
|
|
159
|
+
using manager.register_transformer(callable) where callable will be
|
|
160
|
+
called after an astng has been built and given the related module node
|
|
161
|
+
as argument
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
2011-07-18 -- 0.22.0
|
|
166
|
+
* added column offset information on nodes (patch by fawce)
|
|
167
|
+
|
|
168
|
+
* #70497: Crash on AttributeError: 'NoneType' object has no attribute '_infer_name'
|
|
169
|
+
|
|
170
|
+
* #70381: IndendationError in import causes crash
|
|
171
|
+
|
|
172
|
+
* #70565: absolute imports treated as relative (patch by Jacek Konieczny)
|
|
173
|
+
|
|
174
|
+
* #70494: fix file encoding detection with python2.x
|
|
175
|
+
|
|
176
|
+
* py3k: __builtin__ module renamed to builtins, we should consider this to properly
|
|
177
|
+
build ast for builtin objects
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
2011-01-11 -- 0.21.1
|
|
182
|
+
* python3: handle file encoding; fix a lot of tests
|
|
183
|
+
|
|
184
|
+
* fix #52006: "True" and "False" can be assigned as variable in Python2x
|
|
185
|
+
|
|
186
|
+
* fix #8847: pylint doesn't understand function attributes at all
|
|
187
|
+
|
|
188
|
+
* fix #8774: iterator / generator / next method
|
|
189
|
+
|
|
190
|
+
* fix bad building of ast from living object w/ container classes
|
|
191
|
+
(eg dict, set, list, tuple): contained elements should be turned to
|
|
192
|
+
ast as well (not doing it will much probably cause crash later)
|
|
193
|
+
|
|
194
|
+
* somewhat fix #57299 and other similar issue: Exception when
|
|
195
|
+
trying to validate file using PyQt's PyQt4.QtCore module: we can't
|
|
196
|
+
do much about it but at least catch such exception to avoid crash
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
2010-11-15 -- 0.21.0
|
|
201
|
+
* python3.x: first python3.x release
|
|
202
|
+
|
|
203
|
+
* fix #37105: Crash on AttributeError: 'NoneType' object has no attribute '_infer_name'
|
|
204
|
+
|
|
205
|
+
* python2.4: drop python < 2.5 support
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
2010-10-27 -- 0.20.4
|
|
210
|
+
* fix #37868 #37665 #33638 #37909: import problems with absolute_import_activated
|
|
211
|
+
|
|
212
|
+
* fix #8969: false positive when importing from zip-safe eggs
|
|
213
|
+
|
|
214
|
+
* fix #46131: minimal class decorator support
|
|
215
|
+
|
|
216
|
+
* minimal python2.7 support (dict and set comprehension)
|
|
217
|
+
|
|
218
|
+
* important progress on Py3k compatibility
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
2010-09-28 -- 0.20.3
|
|
223
|
+
* restored python 2.3 compatibility
|
|
224
|
+
|
|
225
|
+
* fix #45959: AttributeError: 'NoneType' object has no attribute 'frame', due
|
|
226
|
+
to handling of __class__ when importing from living object (because of missing
|
|
227
|
+
source code or C-compiled object)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
2010-09-10 -- 0.20.2
|
|
232
|
+
* fix astng building bug: we've to set module.package flag at the node
|
|
233
|
+
creation time otherwise we'll miss this information when infering relative
|
|
234
|
+
import during the build process (this should fix for instance some problems
|
|
235
|
+
with numpy)
|
|
236
|
+
|
|
237
|
+
* added __subclasses__ to special class attribute
|
|
238
|
+
|
|
239
|
+
* fix Class.interfaces so that no InferenceError raised on empty __implements__
|
|
240
|
+
|
|
241
|
+
* yield YES on multiplication of tuple/list with non valid operand
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
2010-05-11 -- 0.20.1
|
|
246
|
+
* fix licensing to LGPL
|
|
247
|
+
|
|
248
|
+
* add ALL_NODES_CLASSES constant to nodes module
|
|
249
|
+
|
|
250
|
+
* nodes redirection cleanup (possible since refactoring)
|
|
251
|
+
|
|
252
|
+
* bug fix for python < 2.5: add Delete node on Subscript nodes if we are in a
|
|
253
|
+
del context
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
2010-03-22 -- 0.20.0
|
|
258
|
+
* fix #20464: raises “TypeError: '_Yes' object is not iterable” on list inference
|
|
259
|
+
|
|
260
|
+
* fix #19882: pylint hangs
|
|
261
|
+
|
|
262
|
+
* fix #20759: crash on pyreverse UNARY_OP_METHOD KeyError '~'
|
|
263
|
+
|
|
264
|
+
* fix #20760: crash on pyreverse : AttributeError: 'Subscript'
|
|
265
|
+
object has no attribute 'infer_lhs'
|
|
266
|
+
|
|
267
|
+
* fix #21980: [Python-modules-team] Bug#573229 : Pylint hangs;
|
|
268
|
+
improving the cache yields a speed improvement on big projects
|
|
269
|
+
|
|
270
|
+
* major refactoring: rebuild the tree instead of modify / monkey patching
|
|
271
|
+
|
|
272
|
+
* fix #19641: "maximum recursion depth exceeded" messages w/ python 2.6
|
|
273
|
+
this was introduced by a refactoring
|
|
274
|
+
|
|
275
|
+
* Ned Batchelder patch to properly import eggs with Windows line
|
|
276
|
+
endings. This fixes a problem with pylint not being able to
|
|
277
|
+
import setuptools.
|
|
278
|
+
|
|
279
|
+
* Winfried Plapper patches fixing .op attribute value for AugAssign nodes,
|
|
280
|
+
visit_ifexp in nodes_as_string
|
|
281
|
+
|
|
282
|
+
* Edward K. Ream / Tom Fleck patch closes #19641 (maximum recursion depth
|
|
283
|
+
exceeded" messages w/ python 2.6), see https://bugs.launchpad.net/pylint/+bug/456870
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
2009-12-18 -- 0.19.3
|
|
288
|
+
* fix name error making 0.19.2 almost useless
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
2009-12-18 -- 0.19.2
|
|
293
|
+
* fix #18773: inference bug on class member (due to bad handling of instance
|
|
294
|
+
/ class nodes "bounded" to method calls)
|
|
295
|
+
|
|
296
|
+
* fix #9515: strange message for non-class "Class baz has no egg member" (due to
|
|
297
|
+
bad inference of function call)
|
|
298
|
+
|
|
299
|
+
* fix #18953: inference fails with augmented assignment (special case for augmented
|
|
300
|
+
assignement in infer_ass method)
|
|
301
|
+
|
|
302
|
+
* fix #13944: false positive for class/instance attributes (Instance.getattr
|
|
303
|
+
should return assign nodes on instance classes as well as instance.
|
|
304
|
+
|
|
305
|
+
* include spelling fixes provided by Dotan Barak
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
2009-08-27 -- 0.19.1
|
|
310
|
+
* fix #8771: crash on yield expression
|
|
311
|
+
|
|
312
|
+
* fix #10024: line numbering bug with try/except/finally
|
|
313
|
+
|
|
314
|
+
* fix #10020: when building from living object, __name__ may be None
|
|
315
|
+
|
|
316
|
+
* fix #9891: help(logilab.astng) throws TypeError
|
|
317
|
+
|
|
318
|
+
* fix #9588: false positive E1101 for augmented assignment
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
2009-03-25 -- 0.19.0
|
|
323
|
+
* fixed python 2.6 issue (tests ok w/ 2.4, 2.5, 2.6. Anyone using 2.2 / 2.3
|
|
324
|
+
to tell us if it works?)
|
|
325
|
+
|
|
326
|
+
* some understanding of the __builtin__.property decorator
|
|
327
|
+
|
|
328
|
+
* inference: introduce UnboundMethod / rename InstanceMethod to BoundMethod
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
2009-03-19 -- 0.18.0
|
|
333
|
+
* major api / tree structure changes to make it works with compiler *and*
|
|
334
|
+
python >= 2.5 _ast module
|
|
335
|
+
|
|
336
|
+
* cleanup and refactoring on the way
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
2008-11-19 -- 0.17.4
|
|
341
|
+
* fix #6015: filter statements bug triggering W0631 false positive in pylint
|
|
342
|
+
|
|
343
|
+
* fix #5571: Function.is_method() should return False on module level
|
|
344
|
+
functions decorated by staticmethod/classmethod (avoid some crash in pylint)
|
|
345
|
+
|
|
346
|
+
* fix #5010: understand python 2.5 explicit relative imports
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
2008-09-10 -- 0.17.3
|
|
351
|
+
* fix #5889: astng crash on certain pyreverse projects
|
|
352
|
+
|
|
353
|
+
* fix bug w/ loop assignment in .lookup
|
|
354
|
+
|
|
355
|
+
* apply Maarten patch fixing a crash on TryFinalaly.block_range and fixing
|
|
356
|
+
'else'/'final' block line detection
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
2008-01-14 -- 0.17.2
|
|
361
|
+
* "with" statement support, patch provided by Brian Hawthorne
|
|
362
|
+
|
|
363
|
+
* fixed recursion arguments in nodes_of_class method as notified by
|
|
364
|
+
Dave Borowitz
|
|
365
|
+
|
|
366
|
+
* new InstanceMethod node introduced to wrap bound method (e.g. Function
|
|
367
|
+
node), patch provided by Dave Borowitz
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
2007-06-07 -- 0.17.1
|
|
372
|
+
* fix #3651: crash when callable as default arg
|
|
373
|
+
|
|
374
|
+
* fix #3670: subscription inference crash in some cases
|
|
375
|
+
|
|
376
|
+
* fix #3673: Lambda instance has no attribute 'pytype'
|
|
377
|
+
|
|
378
|
+
* fix crash with chained "import as"
|
|
379
|
+
|
|
380
|
+
* fix crash on numpy
|
|
381
|
+
|
|
382
|
+
* fix potential InfiniteRecursion error with builtin objects
|
|
383
|
+
|
|
384
|
+
* include patch from Marien Zwart fixing some test / py 2.5
|
|
385
|
+
|
|
386
|
+
* be more error resilient when accessing living objects from external
|
|
387
|
+
code in the manager
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
2007-02-22 -- 0.17.0
|
|
392
|
+
* api change to be able to infer using a context (used to infer function call
|
|
393
|
+
result only for now)
|
|
394
|
+
|
|
395
|
+
* slightly better inference on astng built from living object by trying to infer
|
|
396
|
+
dummy nodes (able to infer 'help' builtin for instance)
|
|
397
|
+
|
|
398
|
+
* external attribute definition support
|
|
399
|
+
|
|
400
|
+
* basic math operation inference
|
|
401
|
+
|
|
402
|
+
* new pytype method on possibly inferred node (e.g. module, classes, const...)
|
|
403
|
+
|
|
404
|
+
* fix a living object astng building bug, which was making "open" uninferable
|
|
405
|
+
|
|
406
|
+
* fix lookup of name in method bug (#3289)
|
|
407
|
+
|
|
408
|
+
* fix decorator lookup bug (#3261)
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
2006-11-23 -- 0.16.3
|
|
413
|
+
* enhance inference for the subscription notation (motivated by a patch from Amaury)
|
|
414
|
+
and for unary sub/add
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
2006-11-15 -- 0.16.2
|
|
419
|
+
* grrr, fixed python 2.3 incompatibility introduced by generator expression
|
|
420
|
+
scope handling
|
|
421
|
+
|
|
422
|
+
* upgrade to avoid warnings with logilab-common 0.21.0 (on which now
|
|
423
|
+
depends so)
|
|
424
|
+
|
|
425
|
+
* backported astutils module from logilab-common
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
2006-09-25 -- 0.16.1
|
|
430
|
+
* python 2.5 support, patch provided by Marien Zwart
|
|
431
|
+
|
|
432
|
+
* fix [Class|Module].block_range method (this fixes pylint's inline
|
|
433
|
+
disabling of messages on classes/modules)
|
|
434
|
+
|
|
435
|
+
* handle class.__bases__ and class.__mro__ (proper metaclass handling
|
|
436
|
+
still needed though)
|
|
437
|
+
|
|
438
|
+
* drop python2.2 support: remove code that was working around python2.2
|
|
439
|
+
|
|
440
|
+
* fixed generator expression scope bug
|
|
441
|
+
|
|
442
|
+
* patch transformer to extract correct line information
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
2006-04-19 -- 0.16.0
|
|
447
|
+
* fix living object building to consider classes such as property as
|
|
448
|
+
a class instead of a data descriptor
|
|
449
|
+
|
|
450
|
+
* fix multiple assignment inference which was discarding some solutions
|
|
451
|
+
|
|
452
|
+
* added some line manipulation methods to handle pylint's block messages
|
|
453
|
+
control feature (Node.last_source_line(), None.block_range(lineno)
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
2006-03-10 -- 0.15.1
|
|
458
|
+
* fix avoiding to load everything from living objects... Thanks Amaury!
|
|
459
|
+
|
|
460
|
+
* fix a possible NameError in Instance.infer_call_result
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
2006-03-06 -- 0.15.0
|
|
465
|
+
* fix possible infinite recursion on global statements (close #10342)
|
|
466
|
+
and in various other cases...
|
|
467
|
+
|
|
468
|
+
* fix locals/globals interactions when the global statement is used
|
|
469
|
+
(close #10434)
|
|
470
|
+
|
|
471
|
+
* multiple inference related bug fixes
|
|
472
|
+
|
|
473
|
+
* associate List, Tuple and Dict and Const nodes to their respective
|
|
474
|
+
classes
|
|
475
|
+
|
|
476
|
+
* new .ass_type method on assignment related node, returning the
|
|
477
|
+
assignment type node (Assign, For, ListCompFor, GenExprFor,
|
|
478
|
+
TryExcept)
|
|
479
|
+
|
|
480
|
+
* more API refactoring... .resolve method has disappeared, now you
|
|
481
|
+
have .ilookup on every nodes and .getattr/.igetattr on node
|
|
482
|
+
supporting the attribute protocol
|
|
483
|
+
|
|
484
|
+
* introduced a YES object that may be returned when there is ambiguity
|
|
485
|
+
on an inference path (typically function call when we don't know
|
|
486
|
+
arguments value)
|
|
487
|
+
|
|
488
|
+
* builder try to instantiate builtin exceptions subclasses to get their
|
|
489
|
+
instance attribute
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
2006-01-10 -- 0.14.0
|
|
494
|
+
* some major inference improvements and refactoring ! The drawback is
|
|
495
|
+
the introduction of some non backward compatible change in the API
|
|
496
|
+
but it's imho much cleaner and powerful now :)
|
|
497
|
+
|
|
498
|
+
* new boolean property .newstyle on Class nodes (implements #10073)
|
|
499
|
+
|
|
500
|
+
* new .import_module method on Module node to help in .resolve
|
|
501
|
+
refactoring
|
|
502
|
+
|
|
503
|
+
* .instance_attrs has list of assignments to instance attribute
|
|
504
|
+
dictionary as value instead of one
|
|
505
|
+
|
|
506
|
+
* added missing GenExprIf and GenExprInner nodes, and implements
|
|
507
|
+
as_string for each generator expression related nodes
|
|
508
|
+
|
|
509
|
+
* specifically catch KeyboardInterrupt to reraise it in some places
|
|
510
|
+
|
|
511
|
+
* fix so that module names are always absolute
|
|
512
|
+
|
|
513
|
+
* fix .resolve on package where a subpackage is imported in the
|
|
514
|
+
__init__ file
|
|
515
|
+
|
|
516
|
+
* fix a bug regarding construction of Function node from living object
|
|
517
|
+
with earlier version of python 2.4
|
|
518
|
+
|
|
519
|
+
* fix a NameError on Import and From self_resolve method
|
|
520
|
+
|
|
521
|
+
* fix a bug occurring when building an astng from a living object with
|
|
522
|
+
a property
|
|
523
|
+
|
|
524
|
+
* lint fixes
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
2005-11-07 -- 0.13.1
|
|
529
|
+
* fix bug on building from living module the same object in
|
|
530
|
+
encountered more than once time (e.g. builtins.object) (close #10069)
|
|
531
|
+
|
|
532
|
+
* fix bug in Class.ancestors() regarding inner classes (close #10072)
|
|
533
|
+
|
|
534
|
+
* fix .self_resolve() on From and Module nodes to handle package
|
|
535
|
+
precedence over module (close #10066)
|
|
536
|
+
|
|
537
|
+
* locals dict for package contains __path__ definition (close #10065)
|
|
538
|
+
|
|
539
|
+
* astng provide GenExpr and GenExprFor nodes with python >= 2.4
|
|
540
|
+
(close #10063)
|
|
541
|
+
|
|
542
|
+
* fix python2.2 compatibility (close #9922)
|
|
543
|
+
|
|
544
|
+
* link .__contains__ to .has_key on scoped node to speed up execution
|
|
545
|
+
|
|
546
|
+
* remove no more necessary .module_object() method on From and Module
|
|
547
|
+
nodes
|
|
548
|
+
|
|
549
|
+
* normalize parser.ParserError to SyntaxError with python 2.2
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
2005-10-21 -- 0.13.0
|
|
554
|
+
* .locals and .globals on scoped node handle now a list of references
|
|
555
|
+
to each assignment statements instead of a single reference to the
|
|
556
|
+
first assignment statement.
|
|
557
|
+
|
|
558
|
+
* fix bug with manager.astng_from_module_name when a context file is
|
|
559
|
+
given (notably fix ZODB 3.4 crash with pylint/pyreverse)
|
|
560
|
+
|
|
561
|
+
* fix Compare.as_string method
|
|
562
|
+
|
|
563
|
+
* fix bug with lambda object missing the "type" attribute
|
|
564
|
+
|
|
565
|
+
* some minor refactoring
|
|
566
|
+
|
|
567
|
+
* This package has been extracted from the logilab-common package, which
|
|
568
|
+
will be kept for some time for backward compatibility but will no
|
|
569
|
+
longer be maintained (this explains that this package is starting with
|
|
570
|
+
the 0.13 version number, since the fork occurs with the version
|
|
571
|
+
released in logilab-common 0.12).
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|