#641317 pyflakes: please detect "except" overwriting built-in exceptions

#641317#3
Date:
2011-09-12 15:40:42 UTC
From:
To:
It'd nice if pyflakes emitted a warning on code like this:

         try:
             oldtime=os.path.getmtime(fname)
         except OSError,IOError:
             oldtime=0

(Note missing parentheses around "OSError,IOError".)