Georg Brandl added the comment:
First, syntax proposals for 3.0 are no longer accepted.
Second, this sort of proposal should be discussed on the python-ideas
mailing list first.
Third, this is really ugly :)
So, closing this.
--
nosy: +georg.brandl
resolution: -> rejected
status: open
New submission from David W. Lambert:
# 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'}
--
compon