This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sobolevn
Recipients AlexWaygood, cdce8p, gvanrossum, kj, serhiy.storchaka, sobolevn
Date 2021-12-24.22:40:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1640385630.31.0.295208836534.issue46162@roundup.psfhosted.org>
In-reply-to
Content
Serhiy, no, we can infer that.

There are two general cases:

1. `x = property(x_get, x_set)`, it is just ideal
2. `@property x` and `@x.setter`, it is also inferable with a bit of special casing for the mutable type part (we mutate the type of `x` when adding a setter)
History
Date User Action Args
2021-12-24 22:40:30sobolevnsetrecipients: + sobolevn, gvanrossum, serhiy.storchaka, kj, AlexWaygood, cdce8p
2021-12-24 22:40:30sobolevnsetmessageid: <1640385630.31.0.295208836534.issue46162@roundup.psfhosted.org>
2021-12-24 22:40:30sobolevnlinkissue46162 messages
2021-12-24 22:40:30sobolevncreate