https://d.puremagic.com/issues/show_bug.cgi?id=3699


[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |[email protected]
         Resolution|WONTFIX                     |


--- Comment #9 from [email protected] 2014-03-19 05:36:12 PDT ---
(In reply to comment #7)
> Four year old request.  Can be discussed further on NG if required.

There are bugs that sleep in bugzilla for years just because no one has time or
desire to fix them, but they are still valid. I have plenty of similar bugs in
bugzilla. So closing down an issue just for lack of fixes is not a good idea.

And a Python-like "else" clause of while/for/foreach is nice. You can replace
code like:

bool ok = true;
foreach (...) {
    ...
    if (cond) {
        ok = false;
        break;
    }
}
if (!ok) { ... }


With:

foreach (...) {
    ...
    if (cond)
        break;
} else { ... }


Reopened until we have a true decision.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to