summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_noerror_used_before_assignment.py
blob: 844ee0511d3e1a9ce77fc76f8c732e9fb0ad436d (plain)
1
2
3
4
5
# pylint: disable = line-too-long, multiple-statements, missing-module-attribute, print-statement
"""https://bitbucket.org/logilab/pylint/issue/111/false-positive-used-before-assignment-with"""

try: raise IOError(1, "a")
except IOError, err: print err