I'm having trouble understanding the exit status of pylint.  Could
someone point me to where this is documented (if it is)?

unix> pylint test.py
...
unix> echo $?
16
unix> pylint test.py --disable-msg=C0111
...
unix> echo $?
0
unix> pylint -blah
...
unix> echo $?
2

I'm accustomed to unix programs following the convention of exiting 0
for success and 1-255 for failure.  I'm not clear how to distinguish
failure from the above.  Thanks.
_______________________________________________
Python-Projects mailing list
Python-Projects@lists.logilab.org
http://lists.logilab.org/mailman/listinfo/python-projects

Reply via email to