�
<��g� � �H � d Z dZ G d� de� � ZefZd� Zd� Zd� Zd� ZdS ) z'Key functions for memoizing decorators.)�hashkey� methodkey�typedkey�typedmethodkeyc �X � e Zd ZdZdZej fd�Zej fd�Zej fd�Zd� Z dS )�_HashedTuplez�A tuple that ensures that hash() will be called no more than once
per element, since cache decorators will hash the key multiple
times on a cache miss. See also _HashedSeq in the standard
library functools implementation.
Nc �<