Bug 322245 - "with:" doesn't support creating multiple variables
Summary: "with:" doesn't support creating multiple variables
Status: RESOLVED FIXED
Alias: None
Product: kdev-python
Classification: Developer tools
Component: Language support (show other bugs)
Version: git master
Platform: Other Linux
: NOR normal
Target Milestone: 1.6.0
Assignee: Sven Brauch
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-07-11 15:34 UTC by Sven Brauch
Modified: 2014-01-20 11:16 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sven Brauch 2013-07-11 15:34:28 UTC
example code: with (x, y) as (a, b): ...
will not create declarations for a, b.

The proper fix is to create a generic visitVariableTuple function which visits all names in a tuple as variable declarations, and assigns proper types to them. We have this functionality spread across two or three places here, and we shouldn't add another one.

Reproducible: Always
Comment 1 Sven Brauch 2014-01-20 11:16:32 UTC
Fixed in Python 3, not gonna fix it for 2.