Menu

#328 Code completion in exception handlers

open
nobody
None
5
2009-01-04
2009-01-04
No

I'd like to see calltips implemented for exception identifiers in exception handling blocks.

Example code:

try:
...
except HTTPError, e: # Python 2.5 or earlier
authline = e.headers["WWW-Authenticate"]

try:
...
except HTTPError as e: # Python 2.6 and 3.0
authline = e.headers["WWW-Authenticate"]

Discussion

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.