From f85563fedd5619dcab6c83bcbf06adc76fcdbb3994136cd17a924eb37a35f534 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 28 Oct 2019 10:27:30 +0000 Subject: [PATCH] - Update to 2.4.3: * Fix an issue with ``unnecessary-comprehension`` in comprehensions with additional repacking of elements. * ``import-outside-toplevel`` is emitted for ``ImportFrom`` nodes as well. * Do not emit ``no-method-argument`` for functions using positional only args. * ``consider-using-sys-exit`` is no longer emitted when `exit` is imported in the local scope. * `invalid-overridden-method` takes `abc.abstractproperty` in account * Fixed ``missing-yield-type-doc`` getting incorrectly raised when a generator does not document a yield type but has a type annotation. * ``typing.overload`` functions are exempted from ``too-many-function-args`` OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pylint?expand=0&rev=99 --- python-pylint.changes | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/python-pylint.changes b/python-pylint.changes index a4229f5..ae96595 100644 --- a/python-pylint.changes +++ b/python-pylint.changes @@ -1,7 +1,15 @@ ------------------------------------------------------------------- Sun Oct 27 08:30:00 UTC 2019 - Michael Ströder -- Update to 2.4.3 +- Update to 2.4.3: + * Fix an issue with ``unnecessary-comprehension`` in comprehensions with additional repacking of elements. + * ``import-outside-toplevel`` is emitted for ``ImportFrom`` nodes as well. + * Do not emit ``no-method-argument`` for functions using positional only args. + * ``consider-using-sys-exit`` is no longer emitted when `exit` is imported in the local scope. + * `invalid-overridden-method` takes `abc.abstractproperty` in account + * Fixed ``missing-yield-type-doc`` getting incorrectly raised when + a generator does not document a yield type but has a type annotation. + * ``typing.overload`` functions are exempted from ``too-many-function-args`` ------------------------------------------------------------------- Wed Oct 9 11:27:15 UTC 2019 - Tomáš Chvátal