I've set up https://bitbucket.org/tmarek/pylint ( https://bitbucket.org/tmarek/pylint), with one branch for each patch:
Branch preprocess_fix > > >> > This one is rather trivial. It fixes a crash in preprocess_options when >> an >> > option that takes a value does not have one in the command line. >> > Alternatively, preprocess_options could just call sys.exit, but throwing >> a >> > normal exception seems cleaner. >> > >> >> Branch noclobber_in_except > > >> > This one is rather large. It introduces a new warning for overwriting >> names >> > in (mostly erroneous) exception handlers of the style >> > >> > try: >> > ... >> > except KeyError, IOError: >> > ... >> > >> > In the current code, this creates (rather cryptic) error messages about >> > IOError being an invalid name for a local variable, and an inexperienced >> > programmer is more likely to silence it than to know the actual problem. >> > This warning is also silenced in the current patch. >> > >> > // Torsten -- Site Reliability Engineer ∘ Google ✚ ∘ ⬕
_______________________________________________ Python-Projects mailing list [email protected] http://lists.logilab.org/mailman/listinfo/python-projects
