pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-pylint py-pylint: updated to 2.4.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/63d49f60d7d7
branches:  trunk
changeset: 401850:63d49f60d7d7
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue Oct 01 11:38:06 2019 +0000

description:
py-pylint: updated to 2.4.2


What's New in Pylint 2.4.2?
* ``ignored-modules`` can skip submodules.
* ``self-assigning-variable`` skips class level assignments.
* ``consider-using-sys-exit`` is exempted when `exit()` is imported from `sys`
* Exempt annotated assignments without variable from ``class-variable-slots-conflict``
* Fix ``utils.is_error`` to account for functions returning early.
  This fixes a false negative with ``unused-variable`` which was no longer triggered
  when a function raised an exception as the last instruction, but the body of the function
  still had unused variables.

What's New in Pylint 2.4.1?
* Exempt type checking definitions defined in both clauses of a type checking guard
* Exempt type checking definitions inside the type check guard
  In a7f236528bb3758886b97285a56f3f9ce5b13a99 we added basic support
  for emitting `used-before-assignment` if a variable was only defined
  inside a type checking guard (using `TYPE_CHECKING` variable from `typing`)
  Unfortunately that missed the case of using those type checking imports
  inside the guard itself, which triggered spurious used-before-assignment errors.
* Require astroid >= 2.3 to avoid any compatibility issues.

What's New in Pylint 2.4.0?
* New check: ``import-outside-toplevel``
  This check warns when modules are imported from places other than a
  module toplevel, e.g. inside a function or a class.
* Handle inference ambiguity for ``invalid-format-index``
* Removed Python 2 specific checks such as ``relative-import``,
  ``invalid-encoded-data``, ``missing-super-argument``.
* Support forward references for ``function-redefined`` check.
* Handle redefinitions in case of type checking imports.
* Added a new check, ``consider-using-sys-exit``
  This check is emitted when we detect that a quit() or exit() is invoked
  instead of sys.exit(), which is the preferred way of exiting in program.
* ``useless-suppression`` check now ignores ``cyclic-import`` suppressions,
  which could lead to false postiives due to incomplete context at the time
  of the check.
* Added new checks, ``no-else-break`` and ``no-else-continue``
  These checks highlight unnecessary ``else`` and ``elif`` blocks after
  ``break`` and ``continue`` statements.
* Don't emit ``protected-access`` when a single underscore prefixed attribute
  is used inside a special method
* Fix the "statement" values in the PyLinter's stats reports by module.
* Added a new check, ``invalid-overridden-method``
  This check is emitted when we detect that a method is overridden
  as a property or a property is overridden as a method. This can indicate
  a bug in the application code that will trigger a runtime error.
* Added a new check, ``arguments-out-of-order``
  This check warns if you have arguments with names that match those in
  a function's signature but you are passing them in to the function
  in a different order.
* Added a new check, ``redeclared-assigned-name``
  This check is emitted when ``pylint`` detects that a name
  was assigned one or multiple times in the same assignment,
  which indicate a potential bug.
* Ignore lambda calls with variadic arguments without a context.
  Inferring variadic positional arguments and keyword arguments
  will result into empty Tuples and Dicts, which can lead in
  some cases to false positives with regard to no-value-for-parameter.
  In order to avoid this, until we'll have support for call context
  propagation, we're ignoring such cases if detected.
  We already did that for function calls, but the previous fix
  was not taking in consideration ``lambdas``
* Added a new check, ``self-assigning-variable``
  This check is emitted when we detect that a variable is assigned
  to itself, which might indicate a potential bug in the code application.
* Added a new check, ``property-with-parameters``.
  This check is emitted when we detect that a defined property also
  has parameters, which are useless.
* Excluded protocol classes from a couple of checks.
* Add a check `unnecessary-comprehension` that detects unnecessary comprehensions.
  This check is emitted when ``pylint`` finds list-, set- or dict-comprehensions,
  that are unnecessary and can be rewritten with the list-, set- or dict-constructors.
* Excluded PEP 526 instance and class variables from ``no-member``.
* Excluded `attrs` from `too-few-public-methods` check.
* ``unused-import`` emitted for the right import names in function scopes.
* Dropped support for Python 3.4.
* ``assignment-from-no-return`` not triggered for async methods.
* Don't emit ``attribute-defined-outside-init`` for variables defined in setters.
* Syntax errors report the column number.
* Support fully qualified typing imports for type annotations.
* Exclude ``__dict__`` from ``attribute-defined-outside-init``
* Fix pointer on spelling check when the error are more than one time in the same line.
* Fix crash happening when parent of called object cannot be determined
* Allow of in `GoogleDocstring.re_multiple_type`
* Added `subprocess-run-check` to handle subrocess.run without explicitly set `check` keyword.
* When we can't infer bare except handlers, skip ``try-except-raise``
* Handle more `unnecessary-lambda` cases when dealing with additional kwargs in wrapped calls
* Better postponed evaluation of annotations handling
* Support postponed evaluation of annotations for variable annotations.
* ``epylint.py_run`` defaults to ``python`` in case the current executable is not a Python one.
* Ignore raw docstrings when running Similarities checker with `ignore-docstrings=yes` option
* Fix crash when calling ``inherit_from_std_ex`` on a class which is its own ancestor
* Added a new check that warns the user if a function call is used inside a test but parentheses are missing.
* ``len-as-condition`` now only fires when a ``len(x)`` call is made without an explicit comparison
  The message and description accompanying this checker has been changed
  reflect this new behavior, by explicitly asking to either rely on the
  fact that empty sequence are false or to compare the length with a scalar.
* Add ``preferred-module`` checker that notify if an import has a replacement module that should be used.
  This check is emitted when ``pylint`` finds an imported module that has a
  preferred replacement listed in ``preferred-modules``.
* ``assigning-non-slot`` not emitted for classes with unknown base classes.
* ``old-division`` is not emitted for non-Const nodes.
* Added method arguments to the dot writer for pyreverse.
* Support for linting file from stdin.
  IDEs may benefit from the support for linting from an in-memory file.
* Added a new check `class-variable-slots-conflict`
  This check is emitted when ``pylint`` finds a class variable that conflicts with a slot
  name, which would raise a ``ValueError`` at runtime.
* Added new check: dict-iter-missing-items (E1141)
* Fix issue with pylint name in output of python -m pylint --version
* Relicense logo material under the CC BY-SA 4.0 license.
* Skip `if` expressions from f-strings for the `check_elif` checker
* C0412 (ungrouped-import) is now compatible with isort.
* Added new extension to detect too much code in a try clause
* ``signature-mutators`` option was added
   With this option, users can choose to ignore `too-many-function-args`, `unexpected-keyword-arg`,
   and `no-value-for-parameter` for functions decorated with decorators that change
   the signature of a decorated function.
* Fixed a pragma comment on its own physical line being ignored when part
  of a logical line with the previous physical line.
* Fixed false `undefined-loop-variable` for a function defined in the loop,
  that uses the variable defined in that loop.
* Fixed `unused-argument` and `function-redefined` getting raised for
  functions decorated with `typing.overload`.
* Fixed a false positive with ``consider-using-dict-comprehension`` for constructions that can't be converted to a comprehension
* Added ``__post_init__`` to ``defining-attr-methods`` in order to avoid ``attribute-defined-outside-init`` in dataclasses.
* Changed description of W0199 to use the term 2-item-tuple instead of 2-uple.
* Allow a `.` as a prefix for Sphinx name resolution.
* Checkers must now keep a 1 to 1 relationship between "msgid" (ie: C1234) and "symbol" (ie : human-readable-symbol)
* In checkers, an old_names can now be used for multiple new messages and pylint is now a little faster
* Allow the choice of f-strings as a valid way of formatting logging strings.
* Added ``--list-msgs-enabled`` command to list all enabled and disabled messages given the current RC file and command line arguments.

diffstat:

 devel/py-pylint/Makefile |     6 +-
 devel/py-pylint/PLIST    |  1094 ++-------------------------------------------
 devel/py-pylint/distinfo |    10 +-
 3 files changed, 62 insertions(+), 1048 deletions(-)

diffs (truncated from 1180 to 300 lines):

diff -r e007091f3d2f -r 63d49f60d7d7 devel/py-pylint/Makefile
--- a/devel/py-pylint/Makefile  Tue Oct 01 11:34:55 2019 +0000
+++ b/devel/py-pylint/Makefile  Tue Oct 01 11:38:06 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.35 2019/03/02 14:12:28 adam Exp $
+# $NetBSD: Makefile,v 1.36 2019/10/01 11:38:06 adam Exp $
 
-DISTNAME=      pylint-2.3.1
+DISTNAME=      pylint-2.4.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pylint/}
@@ -12,7 +12,7 @@
 
 DEPENDS+=      ${PYPKGPREFIX}-astroid>=2.2.0:../../devel/py-astroid
 DEPENDS+=      ${PYPKGPREFIX}-isort>=4.2.5:../../devel/py-isort
-DEPENDS+=      ${PYPKGPREFIX}-mccabe-[0-9]*:../../devel/py-mccabe
+DEPENDS+=      ${PYPKGPREFIX}-mccabe>=0.6:../../devel/py-mccabe
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 
diff -r e007091f3d2f -r 63d49f60d7d7 devel/py-pylint/PLIST
--- a/devel/py-pylint/PLIST     Tue Oct 01 11:34:55 2019 +0000
+++ b/devel/py-pylint/PLIST     Tue Oct 01 11:38:06 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.16 2019/03/02 14:12:28 adam Exp $
+@comment $NetBSD: PLIST,v 1.17 2019/10/01 11:38:06 adam Exp $
 bin/epylint-${PYVERSSUFFIX}
 bin/pylint-${PYVERSSUFFIX}
 bin/pyreverse-${PYVERSSUFFIX}
@@ -27,6 +27,9 @@
 ${PYSITELIB}/pylint/checkers/base.py
 ${PYSITELIB}/pylint/checkers/base.pyc
 ${PYSITELIB}/pylint/checkers/base.pyo
+${PYSITELIB}/pylint/checkers/base_checker.py
+${PYSITELIB}/pylint/checkers/base_checker.pyc
+${PYSITELIB}/pylint/checkers/base_checker.pyo
 ${PYSITELIB}/pylint/checkers/classes.py
 ${PYSITELIB}/pylint/checkers/classes.pyc
 ${PYSITELIB}/pylint/checkers/classes.pyo
@@ -84,6 +87,9 @@
 ${PYSITELIB}/pylint/config.py
 ${PYSITELIB}/pylint/config.pyc
 ${PYSITELIB}/pylint/config.pyo
+${PYSITELIB}/pylint/constants.py
+${PYSITELIB}/pylint/constants.pyc
+${PYSITELIB}/pylint/constants.pyo
 ${PYSITELIB}/pylint/epylint.py
 ${PYSITELIB}/pylint/epylint.pyc
 ${PYSITELIB}/pylint/epylint.pyo
@@ -99,6 +105,9 @@
 ${PYSITELIB}/pylint/extensions/bad_builtin.py
 ${PYSITELIB}/pylint/extensions/bad_builtin.pyc
 ${PYSITELIB}/pylint/extensions/bad_builtin.pyo
+${PYSITELIB}/pylint/extensions/broad_try_clause.py
+${PYSITELIB}/pylint/extensions/broad_try_clause.pyc
+${PYSITELIB}/pylint/extensions/broad_try_clause.pyo
 ${PYSITELIB}/pylint/extensions/check_docs.py
 ${PYSITELIB}/pylint/extensions/check_docs.pyc
 ${PYSITELIB}/pylint/extensions/check_docs.pyo
@@ -135,6 +144,24 @@
 ${PYSITELIB}/pylint/lint.py
 ${PYSITELIB}/pylint/lint.pyc
 ${PYSITELIB}/pylint/lint.pyo
+${PYSITELIB}/pylint/message/__init__.py
+${PYSITELIB}/pylint/message/__init__.pyc
+${PYSITELIB}/pylint/message/__init__.pyo
+${PYSITELIB}/pylint/message/message.py
+${PYSITELIB}/pylint/message/message.pyc
+${PYSITELIB}/pylint/message/message.pyo
+${PYSITELIB}/pylint/message/message_definition.py
+${PYSITELIB}/pylint/message/message_definition.pyc
+${PYSITELIB}/pylint/message/message_definition.pyo
+${PYSITELIB}/pylint/message/message_definition_store.py
+${PYSITELIB}/pylint/message/message_definition_store.pyc
+${PYSITELIB}/pylint/message/message_definition_store.pyo
+${PYSITELIB}/pylint/message/message_handler_mix_in.py
+${PYSITELIB}/pylint/message/message_handler_mix_in.pyc
+${PYSITELIB}/pylint/message/message_handler_mix_in.pyo
+${PYSITELIB}/pylint/message/message_id_store.py
+${PYSITELIB}/pylint/message/message_id_store.pyc
+${PYSITELIB}/pylint/message/message_id_store.pyo
 ${PYSITELIB}/pylint/pyreverse/__init__.py
 ${PYSITELIB}/pylint/pyreverse/__init__.pyc
 ${PYSITELIB}/pylint/pyreverse/__init__.pyo
@@ -162,9 +189,18 @@
 ${PYSITELIB}/pylint/reporters/__init__.py
 ${PYSITELIB}/pylint/reporters/__init__.pyc
 ${PYSITELIB}/pylint/reporters/__init__.pyo
-${PYSITELIB}/pylint/reporters/json.py
-${PYSITELIB}/pylint/reporters/json.pyc
-${PYSITELIB}/pylint/reporters/json.pyo
+${PYSITELIB}/pylint/reporters/base_reporter.py
+${PYSITELIB}/pylint/reporters/base_reporter.pyc
+${PYSITELIB}/pylint/reporters/base_reporter.pyo
+${PYSITELIB}/pylint/reporters/collecting_reporter.py
+${PYSITELIB}/pylint/reporters/collecting_reporter.pyc
+${PYSITELIB}/pylint/reporters/collecting_reporter.pyo
+${PYSITELIB}/pylint/reporters/json_reporter.py
+${PYSITELIB}/pylint/reporters/json_reporter.pyc
+${PYSITELIB}/pylint/reporters/json_reporter.pyo
+${PYSITELIB}/pylint/reporters/reports_handler_mix_in.py
+${PYSITELIB}/pylint/reporters/reports_handler_mix_in.pyc
+${PYSITELIB}/pylint/reporters/reports_handler_mix_in.pyo
 ${PYSITELIB}/pylint/reporters/text.py
 ${PYSITELIB}/pylint/reporters/text.pyc
 ${PYSITELIB}/pylint/reporters/text.pyo
@@ -177,1043 +213,21 @@
 ${PYSITELIB}/pylint/reporters/ureports/text_writer.py
 ${PYSITELIB}/pylint/reporters/ureports/text_writer.pyc
 ${PYSITELIB}/pylint/reporters/ureports/text_writer.pyo
-${PYSITELIB}/pylint/test/acceptance/test_stdlib.py
-${PYSITELIB}/pylint/test/conftest.py
-${PYSITELIB}/pylint/test/data/__init__.py
-${PYSITELIB}/pylint/test/data/ascript
-${PYSITELIB}/pylint/test/data/classes_No_Name.dot
-${PYSITELIB}/pylint/test/data/clientmodule_test.py
-${PYSITELIB}/pylint/test/data/packages_No_Name.dot
-${PYSITELIB}/pylint/test/data/suppliermodule_test.py
-${PYSITELIB}/pylint/test/extensions/__init__.py
-${PYSITELIB}/pylint/test/extensions/data/bad_builtin.py
-${PYSITELIB}/pylint/test/extensions/data/compare_to_zero.py
-${PYSITELIB}/pylint/test/extensions/data/docstring.py
-${PYSITELIB}/pylint/test/extensions/data/elif.py
-${PYSITELIB}/pylint/test/extensions/data/empty_string_comparison.py
-${PYSITELIB}/pylint/test/extensions/data/mccabe.py
-${PYSITELIB}/pylint/test/extensions/data/overlapping_exceptions.py
-${PYSITELIB}/pylint/test/extensions/data/overlapping_exceptions_py33.py
-${PYSITELIB}/pylint/test/extensions/data/redefined.py
-${PYSITELIB}/pylint/test/extensions/test_bad_builtin.py
-${PYSITELIB}/pylint/test/extensions/test_check_docs.py
-${PYSITELIB}/pylint/test/extensions/test_check_docs_utils.py
-${PYSITELIB}/pylint/test/extensions/test_check_mccabe.py
-${PYSITELIB}/pylint/test/extensions/test_check_raise_docs.py
-${PYSITELIB}/pylint/test/extensions/test_check_return_docs.py
-${PYSITELIB}/pylint/test/extensions/test_check_yields_docs.py
-${PYSITELIB}/pylint/test/extensions/test_comparetozero.py
-${PYSITELIB}/pylint/test/extensions/test_docstyle.py
-${PYSITELIB}/pylint/test/extensions/test_elseif_used.py
-${PYSITELIB}/pylint/test/extensions/test_emptystring.py
-${PYSITELIB}/pylint/test/extensions/test_overlapping_exceptions.py
-${PYSITELIB}/pylint/test/extensions/test_redefined.py
-${PYSITELIB}/pylint/test/functional/__init__.py
-${PYSITELIB}/pylint/test/functional/abstract_abc_methods.py
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_in_class.py
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py2.py
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py2.rc
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py2.txt
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py3.py
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py3.rc
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py3.txt
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py34.py
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py34.rc
-${PYSITELIB}/pylint/test/functional/abstract_class_instantiated_py34.txt
-${PYSITELIB}/pylint/test/functional/abstract_method_py2.py
-${PYSITELIB}/pylint/test/functional/abstract_method_py2.rc
-${PYSITELIB}/pylint/test/functional/abstract_method_py2.txt
-${PYSITELIB}/pylint/test/functional/abstract_method_py3.py
-${PYSITELIB}/pylint/test/functional/abstract_method_py3.rc
-${PYSITELIB}/pylint/test/functional/abstract_method_py3.txt
-${PYSITELIB}/pylint/test/functional/access_member_before_definition.py
-${PYSITELIB}/pylint/test/functional/access_member_before_definition.txt
-${PYSITELIB}/pylint/test/functional/access_to__name__.py
-${PYSITELIB}/pylint/test/functional/access_to__name__.txt
-${PYSITELIB}/pylint/test/functional/access_to_protected_members.py
-${PYSITELIB}/pylint/test/functional/access_to_protected_members.txt
-${PYSITELIB}/pylint/test/functional/anomalous_unicode_escape_py2.py
-${PYSITELIB}/pylint/test/functional/anomalous_unicode_escape_py2.rc
-${PYSITELIB}/pylint/test/functional/anomalous_unicode_escape_py2.txt
-${PYSITELIB}/pylint/test/functional/anomalous_unicode_escape_py3.py
-${PYSITELIB}/pylint/test/functional/anomalous_unicode_escape_py3.rc
-${PYSITELIB}/pylint/test/functional/anomalous_unicode_escape_py3.txt
-${PYSITELIB}/pylint/test/functional/arguments.py
-${PYSITELIB}/pylint/test/functional/arguments.txt
-${PYSITELIB}/pylint/test/functional/arguments_differ.py
-${PYSITELIB}/pylint/test/functional/arguments_differ.txt
-${PYSITELIB}/pylint/test/functional/arguments_differ_py3.py
-${PYSITELIB}/pylint/test/functional/arguments_differ_py3.rc
-${PYSITELIB}/pylint/test/functional/arguments_differ_py3.txt
-${PYSITELIB}/pylint/test/functional/assert_on_tuple.py
-${PYSITELIB}/pylint/test/functional/assert_on_tuple.txt
-${PYSITELIB}/pylint/test/functional/assigning_non_slot.py
-${PYSITELIB}/pylint/test/functional/assigning_non_slot.txt
-${PYSITELIB}/pylint/test/functional/assignment_from_no_return.py
-${PYSITELIB}/pylint/test/functional/assignment_from_no_return.txt
-${PYSITELIB}/pylint/test/functional/assignment_from_no_return_py3.py
-${PYSITELIB}/pylint/test/functional/assignment_from_no_return_py3.rc
-${PYSITELIB}/pylint/test/functional/assignment_from_no_return_py3.txt
-${PYSITELIB}/pylint/test/functional/async_functions.py
-${PYSITELIB}/pylint/test/functional/async_functions.rc
-${PYSITELIB}/pylint/test/functional/async_functions.txt
-${PYSITELIB}/pylint/test/functional/attribute_defined_outside_init.py
-${PYSITELIB}/pylint/test/functional/attribute_defined_outside_init.txt
-${PYSITELIB}/pylint/test/functional/bad_continuation.py
-${PYSITELIB}/pylint/test/functional/bad_continuation.txt
-${PYSITELIB}/pylint/test/functional/bad_continuation_py36.py
-${PYSITELIB}/pylint/test/functional/bad_continuation_py36.rc
-${PYSITELIB}/pylint/test/functional/bad_continuation_tabs.py
-${PYSITELIB}/pylint/test/functional/bad_continuation_tabs.rc
-${PYSITELIB}/pylint/test/functional/bad_continuation_tabs.txt
-${PYSITELIB}/pylint/test/functional/bad_except_order.py
-${PYSITELIB}/pylint/test/functional/bad_except_order.txt
-${PYSITELIB}/pylint/test/functional/bad_exception_context.py
-${PYSITELIB}/pylint/test/functional/bad_exception_context.rc
-${PYSITELIB}/pylint/test/functional/bad_exception_context.txt
-${PYSITELIB}/pylint/test/functional/bad_indentation.py
-${PYSITELIB}/pylint/test/functional/bad_indentation.txt
-${PYSITELIB}/pylint/test/functional/bad_inline_option.py
-${PYSITELIB}/pylint/test/functional/bad_inline_option.rc
-${PYSITELIB}/pylint/test/functional/bad_inline_option.txt
-${PYSITELIB}/pylint/test/functional/bad_open_mode.py
-${PYSITELIB}/pylint/test/functional/bad_open_mode.rc
-${PYSITELIB}/pylint/test/functional/bad_open_mode.txt
-${PYSITELIB}/pylint/test/functional/bad_open_mode_py3.py
-${PYSITELIB}/pylint/test/functional/bad_open_mode_py3.rc
-${PYSITELIB}/pylint/test/functional/bad_open_mode_py3.txt
-${PYSITELIB}/pylint/test/functional/bad_reversed_sequence.py
-${PYSITELIB}/pylint/test/functional/bad_reversed_sequence.txt
-${PYSITELIB}/pylint/test/functional/bad_staticmethod_argument.py
-${PYSITELIB}/pylint/test/functional/bad_staticmethod_argument.txt
-${PYSITELIB}/pylint/test/functional/bad_thread_instantiation.py
-${PYSITELIB}/pylint/test/functional/bad_thread_instantiation.txt
-${PYSITELIB}/pylint/test/functional/bad_whitespace.py
-${PYSITELIB}/pylint/test/functional/bad_whitespace.txt
-${PYSITELIB}/pylint/test/functional/bare_except.py
-${PYSITELIB}/pylint/test/functional/bare_except.txt
-${PYSITELIB}/pylint/test/functional/blacklisted_name.py
-${PYSITELIB}/pylint/test/functional/blacklisted_name.txt
-${PYSITELIB}/pylint/test/functional/boolean_datetime.py
-${PYSITELIB}/pylint/test/functional/boolean_datetime.rc
-${PYSITELIB}/pylint/test/functional/boolean_datetime.txt
-${PYSITELIB}/pylint/test/functional/broad_except.py
-${PYSITELIB}/pylint/test/functional/broad_except.txt
-${PYSITELIB}/pylint/test/functional/bugfix_local_scope_metaclass_1177.py
-${PYSITELIB}/pylint/test/functional/bugfix_local_scope_metaclass_1177.rc
-${PYSITELIB}/pylint/test/functional/cellvar_escaping_loop.py
-${PYSITELIB}/pylint/test/functional/cellvar_escaping_loop.txt
-${PYSITELIB}/pylint/test/functional/class_members_py27.py
-${PYSITELIB}/pylint/test/functional/class_members_py27.rc
-${PYSITELIB}/pylint/test/functional/class_members_py27.txt
-${PYSITELIB}/pylint/test/functional/class_members_py30.py
-${PYSITELIB}/pylint/test/functional/class_members_py30.rc
-${PYSITELIB}/pylint/test/functional/class_members_py30.txt
-${PYSITELIB}/pylint/test/functional/class_scope.py
-${PYSITELIB}/pylint/test/functional/class_scope.txt
-${PYSITELIB}/pylint/test/functional/comparison_with_callable.py
-${PYSITELIB}/pylint/test/functional/comparison_with_callable.txt
-${PYSITELIB}/pylint/test/functional/confidence_filter.py
-${PYSITELIB}/pylint/test/functional/confidence_filter.rc
-${PYSITELIB}/pylint/test/functional/confidence_filter.txt
-${PYSITELIB}/pylint/test/functional/confusing_with_statement.py
-${PYSITELIB}/pylint/test/functional/confusing_with_statement.txt
-${PYSITELIB}/pylint/test/functional/consider_iterating_dictionary.py
-${PYSITELIB}/pylint/test/functional/consider_iterating_dictionary.txt
-${PYSITELIB}/pylint/test/functional/consider_join.py
-${PYSITELIB}/pylint/test/functional/consider_join.txt
-${PYSITELIB}/pylint/test/functional/consider_merging_isinstance.py
-${PYSITELIB}/pylint/test/functional/consider_merging_isinstance.txt
-${PYSITELIB}/pylint/test/functional/consider_swap_variables.py
-${PYSITELIB}/pylint/test/functional/consider_swap_variables.txt
-${PYSITELIB}/pylint/test/functional/consider_using_dict_comprehension.py
-${PYSITELIB}/pylint/test/functional/consider_using_dict_comprehension.txt
-${PYSITELIB}/pylint/test/functional/consider_using_enumerate.py
-${PYSITELIB}/pylint/test/functional/consider_using_enumerate.txt
-${PYSITELIB}/pylint/test/functional/consider_using_get.py
-${PYSITELIB}/pylint/test/functional/consider_using_get.txt
-${PYSITELIB}/pylint/test/functional/consider_using_in.py
-${PYSITELIB}/pylint/test/functional/consider_using_in.txt
-${PYSITELIB}/pylint/test/functional/consider_using_set_comprehension.py
-${PYSITELIB}/pylint/test/functional/consider_using_set_comprehension.txt
-${PYSITELIB}/pylint/test/functional/continue_in_finally.py
-${PYSITELIB}/pylint/test/functional/continue_in_finally.txt
-${PYSITELIB}/pylint/test/functional/control_pragmas.py
-${PYSITELIB}/pylint/test/functional/control_pragmas.txt
-${PYSITELIB}/pylint/test/functional/crash_missing_module_type.py
-${PYSITELIB}/pylint/test/functional/crash_missing_module_type.txt
-${PYSITELIB}/pylint/test/functional/ctor_arguments.py
-${PYSITELIB}/pylint/test/functional/ctor_arguments.txt
-${PYSITELIB}/pylint/test/functional/dangerous_default_value.py
-${PYSITELIB}/pylint/test/functional/dangerous_default_value.rc
-${PYSITELIB}/pylint/test/functional/dangerous_default_value.txt
-${PYSITELIB}/pylint/test/functional/dangerous_default_value_py30.py
-${PYSITELIB}/pylint/test/functional/dangerous_default_value_py30.rc
-${PYSITELIB}/pylint/test/functional/dangerous_default_value_py30.txt
-${PYSITELIB}/pylint/test/functional/defined_and_used_on_same_line.py
-${PYSITELIB}/pylint/test/functional/deprecated_lambda.py
-${PYSITELIB}/pylint/test/functional/deprecated_lambda.rc
-${PYSITELIB}/pylint/test/functional/deprecated_lambda.txt
-${PYSITELIB}/pylint/test/functional/deprecated_method_getmoduleinfo.py
-${PYSITELIB}/pylint/test/functional/deprecated_method_getmoduleinfo.rc
-${PYSITELIB}/pylint/test/functional/deprecated_method_getmoduleinfo.txt
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py2.py
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py2.rc
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py2.txt
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py3.py
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py3.rc
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py3.txt
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py36.py
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py36.rc
-${PYSITELIB}/pylint/test/functional/deprecated_methods_py36.txt



Home | Main Index | Thread Index | Old Index