Disagree, because for example what if I want custom property with two or three 
decorators ?

Like this:
```python
class Neuron:
    @softmax_activation(weights=["w0", "w1"])
    @linear_activation
    activation

    def __init__(self):
        self.w0 = [...]
        self.w1 = [...]
    ...
```
or for example I just want to apply to my initializer some decorator:
 ```python
class Neuron:
    @softmax_activation(weights=["w0", "w1"])
    activation = LinearActivation(...)

    def __init__(self):
        self.w0 = [...]
        self.w1 = [...]
    ...
```

There exist use-cases for this feature ...
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/RQPQSHPTRYVZHPYAR4WR4HEFTQE7LUL7/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to