Package: pychecker Version: 0.8.18-7 For automatically testing Python code in a CI test, it is useful to ignore any errors or problems in Python itself. If I understand correctly, with -q or --stdlib pychecker should ignore warnings from files under standard library.
However, I get the following errors with or without -q: /usr/lib/python2.6/threading.py:66: (format) shadows builtin /usr/lib/python2.6/threading.py:68: (format) shadows builtin This makes my automatic test fail and therefore less useful. A work-around is to not test for shadowing builtins, if threading.py is used (with --shadowbuiltin), but this devalues the actual test. -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

