Dear "code-quality _at_ python.org:
I am trying to get pylint working with my Python code running under 3.6
on Centos 7 (fully updated). I found some issues and am trying to figure
out how to report. The pylint pages says to look under "issue tracker"
at https://github.com/PyCQA/pylint but I could find an issue tracker.
The next option was to report it to this address.
I am seeing a "W0212: Access to a protected member %s of a client class"
regarding my use of "sys._getframe()". How can …
[View More]this be a warning if the
Python documentation lists this as a method to use in their documentation?
I am also getting an "E0602: Undefined variable %r" when I use
__cached__. I understand that __cached__ may be undefined or defined,
but pylint needs to allow me to test this to see what it is. Yeah,
exception to the rule?
Thanks
ps: please send a reply to let me know if I sent this to the right place
or in pylint's site is directing me incorrectly
[View Less]
Hello!
Is it currently possible with Flake8 or any of its plugins to enforce the code to use keyword arguments in function calls, when the function is imported from a module/library? At least flake8-functions does not support this.
If not, I would like to request this (most likely best suited as optional) rule to be added. My motivation is that it would make code more readable, as one would understand the role of the passed variables better without checking the target function or its …
[View More]documentation.
Example:
from foo import bar
baz = ""
bar(baz=baz) # Allowed
bar(baz) # Not allowed
Thank you for your time and all the work you do regarding Flake8.
Markus
[View Less]