I can't decorate my functions they way I want to. I want them to have jolly...

@mistersql

I can't decorate my functions they way I want to. I want them to have jolly hats

```python
```
# Invalid hat
# 🎩 = lambda _ : _

# valid hat
_Δ_= lambda _ : _

@_Δ_
def hello(): print("hello")

hello()
```
```

Self-replies

@_ Mastodon doesn't seem to be happy with the notation either

python source code abusing function decorators to add jolly hats to functions.