File cryptacular-fix-test-exc.patch of Package python-cryptacular
Index: b/setup.py
===================================================================
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,15 @@
import os
import sys
+# Hack to prevent "TypeError: 'NoneType' object is not callable" error
+# in multiprocessing/util.py _exit_function when running `python
+# setup.py test` (see
+# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
+try:
+ import multiprocessing
+except ImportError:
+ pass
+
from setuptools import setup, find_packages
from distutils.core import Extension