Skip to content

v1.1.0

Compare
Choose a tag to compare
@ipwnponies ipwnponies released this 29 Jan 19:17
· 52 commits to master since this release

What's Changed

Added support for python 3.8+.
Python 3.8 functools.lru_cache added support for using as a plain decorator.

@lru_cache()
def oldway():
  ...

@lru_cache
def newway():
  ...

Full Changelog: v1.0.5...v1.1.0