3ccd512 Disable Pylint 2.0 violations

6 files Authored by abiagion 5 years ago, Committed by cheimes 5 years ago,
    Disable Pylint 2.0 violations
    
    Globally disabling the following violations:
    
    - `assignment-from-no-return` (E1111):
      Assigning to function call which doesn't return. Used when an
      assignment is done on a function call but the inferred function
      doesn't return anything.
    
    - `keyword-arg-before-vararg` (W1113):
      Keyword argument before variable positional arguments list in the
      definition of %s function When defining a keyword argument before
      variable positional arguments, one can end up in having multiple
      values passed for the aforementioned parameter in case the method is
      called with keyword arguments.
    
    Locally disabling the following:
    
    - `subprocess-popen-preexec-fn` (W1509):
      Using preexec_fn keyword which may be unsafe in the presence of
      threads The preexec_fn parameter is not safe to use in the presence
      of threads in your application. The child process could deadlock
      before exec is called. If you must use it, keep it trivial! Minimize
      the number of libraries you call into.
      https://docs.python.org/3/library/subprocess.html#popen-constructor
    
    Fixed violations:
    
    - `bad-mcs-classmethod-argument` (C0204):
      Metaclass class method %s should have %s as first argument Used when
      a metaclass class method has a first argument named differently than
      the value specified in valid-metaclass-classmethod-first-arg option
      (default to "mcs"), recommended to easily differentiate them from
      regular instance methods.
      - Note: Actually `cls` is the default first arg for `__new__`.
    
    - `consider-using-get` (R1715):
      Consider using dict.get for getting values from a dict if a key is
      present or a default if not Using the builtin dict.get for getting a
      value from a dictionary if a key is present or a default if not, is
      simpler and considered more idiomatic, although sometimes a bit slower
    
    Issue: https://pagure.io/freeipa/issue/7614
    
    Signed-off-by: Armando Neto <abiagion@redhat.com>
    Reviewed-By: Christian Heimes <cheimes@redhat.com>
    
        
file modified
+2 -2
file modified
+1 -0
file modified
+8 -1