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 compare magic methods generator + Comparable protocol #2

Closed bleudev closed 3 months ago

bleudev commented 4 months ago

Example:

@cmp_generator
class A:
   def __cmp__(self, other: ...) -> int: ...

def func(a: Comparable, b: Comparable):
   print(a > b)