honey-team / ufpy

Ufpy (Useful Python) - package for Python with some useful features
https://honey-team.github.io/ufpy-website
MIT License
3 stars 3 forks source link

Add `__i...__()` generator #7

Closed bleudev closed 3 months ago

bleudev commented 4 months ago

Generate __iadd__, __isub__ and other magic methods. You should add __add__, __sub__ and other methods.

@i_generator # Auto generate __iadd__()
class A:
    def __add__(self, other): ...