From de84310d18310aeb85697dc485cbc376a2bc47e2 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Sun, 9 Oct 2016 16:05:19 -0500
Subject: [PATCH] Add debugging aid to PersistentDict key collision

---
 pytools/persistent_dict.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pytools/persistent_dict.py b/pytools/persistent_dict.py
index c10d4e9..9bc9438 100644
--- a/pytools/persistent_dict.py
+++ b/pytools/persistent_dict.py
@@ -375,6 +375,8 @@ class PersistentDict(object):
                             "indicative of a broken implementation "
                             "of equality comparison"
                             % (self.identifier, self.container_dir))
+                    # This is here so we can debug the equality comparison
+                    read_key == key
                     raise NoSuchEntryError(key)
 
                 logger.debug("%s: cache hit [key=%s]" % (
-- 
GitLab