From 8fd98624a3f1869646f9534bf9838fc012d5f461 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 13 Sep 2007 19:14:46 -0700
Subject: [PATCH] don't try to use bindann It causes a mysterious misbehavior
 in Python import which causes the previous patch to fail (the patch to not
 run trial tests if dependencies can't be imported)

---
 src/allmydata/util/version_class.py | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/src/allmydata/util/version_class.py b/src/allmydata/util/version_class.py
index 8654e1f8..154d62b8 100644
--- a/src/allmydata/util/version_class.py
+++ b/src/allmydata/util/version_class.py
@@ -20,13 +20,6 @@ else:
     def cmp_version(v1, v2):
         return cmp(pkg_resources.parse_version(str(v1)), pkg_resources.parse_version(str(v2)))
 
-# bindann, by Nathan Wilcox (needed only for debugging)
-try:
-    import bindann
-    bindann.install_exception_handler()
-except ImportError:
-    pass
-
 # Python Standard Library
 import re
 
-- 
2.45.2