The feature seems questionable to me. However, it would be easier to evaluate the implementation if there were unit tests for the change.
-- You received this bug notification because you are a member of Divmod- dev, which is the registrant for Pyflakes. https://bugs.launchpad.net/bugs/812958 Title: property decorator -> redefinition of function Status in Pyflakes: Confirmed Bug description: Code from: http://docs.python.org/library/functions.html#property -------------------------------------- foo.py class C(object): def __init__(self): self._x = None @property def x(self): """I'm the 'x' property.""" return self._x @x.setter def x(self, value): self._x = value @x.deleter def x(self): del self._x --------------------------------------------- pyflakes output is $ pyflakes foo.py foo.py:11: redefinition of function 'x' from line 6 foo.py:15: redefinition of function 'x' from line 11 To manage notifications about this bug go to: https://bugs.launchpad.net/pyflakes/+bug/812958/+subscriptions -- Mailing list: https://launchpad.net/~divmod-dev Post to : [email protected] Unsubscribe : https://launchpad.net/~divmod-dev More help : https://help.launchpad.net/ListHelp

