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 LambertDW
Recipients LambertDW
Date 2008-02-12.17:19:51
SpamBayes Score 0.12884973
Marked as misclassified No
Message-id <1202836792.56.0.267768565577.issue2085@psf.upfronthosting.co.za>
In-reply-to
Content
# proposed syntax:
# object.property = *args,**kwargs

# python 3k could accept property setter with multiple arguments

class c:
    def f(self,a,b,c):
        print a,b,c
    F=property(None,f)

c().F=*'hi',**{'c':'third setter argument'}
History
Date User Action Args
2008-02-12 17:19:52LambertDWsetspambayes_score: 0.12885 -> 0.12884973
recipients: + LambertDW
2008-02-12 17:19:52LambertDWsetspambayes_score: 0.12885 -> 0.12885
messageid: <1202836792.56.0.267768565577.issue2085@psf.upfronthosting.co.za>
2008-02-12 17:19:51LambertDWlinkissue2085 messages
2008-02-12 17:19:51LambertDWcreate