File: _compat.py

package info (click to toggle)
python-yalexs 9.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,120 kB
  • sloc: python: 7,916; makefile: 3; sh: 2
file content (8 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
"""Compat for external lib versions."""

try:
    from propcache.api import cached_property
except ImportError:
    from propcache import cached_property

__all__ = ("cached_property",)