[REPORTS]
# Include message's id in output
include-ids=yes

disable-msg=I0011, W0142, W0704, W0231, W0201, W0103

[VARIABLES]
# List of variable names used for dummy variables (i.e. not used).
dummy-variables=dummy, _

[BASIC]
# Required attributes for module, separated by a comma
required-attributes=__revision__

# Regular expression which should only match functions or classes name which do
# not require a docstring
no-docstring-rgx=

# List of builtins function names that should not be used, separated by a comma
bad-functions=apply
# apply is deprecated


# Regular expression which should only match correct method names
method-rgx=[a-z_][a-z0-9_]*$|setUp|tearDown


[DESIGN]
enable-design=no

[IMPORTS]
# Deprecated modules which should not be used, separated by a comma
deprecated-modules=regsub,TERMIOS,Bastion,rexec

[FORMAT]
max-line-length=79

indent-string='    '

[MISCELLANEOUS]
notes=FIXME,XXX,TODO,###,!!!
