Currently, the code (at least in pam.py) uses mixed tabs and spaces. This makes it tedious to modify. Should be only one kind, particularly because
Python 3 disallows mixing the use of tabs and spaces for indentation.
(from http://legacy.python.org/dev/peps/pep-0008/#tabs-or-spaces)
Currently, the code (at least in pam.py) uses mixed tabs and spaces. This makes it tedious to modify. Should be only one kind, particularly because
(from http://legacy.python.org/dev/peps/pep-0008/#tabs-or-spaces)