diff --git a/doc/whatsnew/2.10.rst b/doc/whatsnew/2.10.rst index 8980b0f91e..7d7312153f 100644 --- a/doc/whatsnew/2.10.rst +++ b/doc/whatsnew/2.10.rst @@ -24,5 +24,12 @@ Other Changes * Performance of the Similarity checker has been improved. * Added ``time.clock`` to deprecated functions/methods for python 3.3 + * Added ``ignored-parents`` option to the design checker to ignore specific classes from the ``too-many-ancestors`` check (R0901). + +* Don't emit ``no-member`` error if guarded behind if statement. + + Ref #1162 + Closes #1990 + Closes #4168