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

handle @property decorator #824

Closed
robertwb opened this issue Mar 27, 2009 · 3 comments
Closed

handle @property decorator #824

robertwb opened this issue Mar 27, 2009 · 3 comments

Comments

@robertwb
Copy link
Contributor

In cdef classes, Cython should transform

    @property
    def somename(self):
        ...

directly into

    property somename:
        def __get__(self):
            ...

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

@robertwb
Copy link
Contributor Author

scoder changed component from Code Generation to Optimization
commented

@robertwb
Copy link
Contributor Author

robertwb commented Nov 8, 2015

linkmauve changed milestone from wishlist to 0.24
commented

Implemented in #462

@linkmauve
Copy link
Contributor

This issue should probably be closed, 0.24 has been released long ago.

@scoder scoder closed this as completed Aug 19, 2018
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

3 participants