I have a module-level variable in my Python 2.6 program named \"_log\", which PyLint complains about:
C0103: Invalid name \"_log\" (should match (([A-Z_][A-Z
In newer versions of pylint this line is now
# pylint: disable=C0103
the enable message is as simple
# pylint: enable=C0103