mvantellingen / python-zeep

A Python SOAP client
http://docs.python-zeep.org
Other
1.88k stars 578 forks source link

Use stdlib functools.cached_property if available #1273

Closed mgorny closed 2 years ago

mgorny commented 2 years ago

Python 3.8+ provides a functools.cached_property in the stdlib that is thread-safe, i.e. equivalent to threaded_cached_property. Use it instead of adding third-party dependencies whenever available.

mvantellingen commented 2 years ago

Thanks 👍

mgorny commented 2 years ago

You're welcome!