Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reference leak when 'continue' appear in a loop's 'else' branch #1093

Closed
robertwb opened this issue May 8, 2010 · 2 comments
Closed

reference leak when 'continue' appear in a loop's 'else' branch #1093

robertwb opened this issue May 8, 2010 · 2 comments

Comments

@robertwb
Copy link
Contributor

robertwb commented May 8, 2010

The following leaks references to 'L' when executing the 'continue' statement:

def for_in():
    """
    >>> for_in()
    6
    """
    i = -1
    for L in [range(5), range(10)]([],):
        for i in L:
            if i > 5:
                break
        else:
            continue
        break
    return i

Migrated from http://trac.cython.org/ticket/533

@robertwb
Copy link
Contributor Author

robertwb commented May 9, 2010

scoder changed owner from somebody to scoder
status from new to assigned
commented

@robertwb
Copy link
Contributor Author

robertwb commented May 9, 2010

scoder changed resolution to fixed
status from assigned to closed
commented

Fixed here:

http://hg.cython.org/cython-devel/rev/879bb33c11c9

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant