PyDictEntry.me_hash

Cached hash code of me_key. Note that hash codes are C longs. We have to use Py_ssize_t instead because dict_popitem() abuses me_hash to hold a search finger.

  1. Py_hash_t me_hash;
    struct PyDictEntry
    version(Python_3_2_Or_Later)
    Py_hash_t me_hash;
  2. Py_ssize_t me_hash;
  3. C_long me_hash;

Meta