From 9cdc193c587631986e579c1ba37a8b982be01238 Mon Sep 17 00:00:00 2001 From: kali Date: Thu, 24 Jan 2013 18:47:41 +0900 Subject: all tests green again plus: * added soledad test requirements * removed soledad from run_tests run (+1K tests failing) * added option to run All tests to run_tests script * pep8 cleanup --- src/leap/crypto/__init__.py | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'src/leap/crypto/__init__.py') diff --git a/src/leap/crypto/__init__.py b/src/leap/crypto/__init__.py index 8df3fc6c..e69de29b 100644 --- a/src/leap/crypto/__init__.py +++ b/src/leap/crypto/__init__.py @@ -1,26 +0,0 @@ -""" -DEBUG! ----------- gnutls lib: libgnutls.26.dylib -DEBUG! ----------- gnutls lib: /usr/local/lib/libgnutls.26.dylib -DEBUG! ----------- gnutls lib: /opt/local/lib/libgnutls.26.dylib -DEBUG! ----------- gnutls lib: libgnutls-extra.26.dylib -DEBUG! ----------- gnutls lib: /usr/local/lib/libgnutls-extra.26.dylib -DEBUG! ----------- gnutls lib: /opt/local/lib/libgnutls-extra.26.dylib -""" -import sys - -# hackaround pyinstaller ctypes dependencies discovery -# See: -# http://www.pyinstaller.org/wiki/Features/CtypesDependencySupport#SolutioninPyInstaller -# gnutls.library.load_library is using a style of dep loading -# unsupported by pyinstaller. So we force these imports here. - -if sys.platform == "darwin": - from ctypes import CDLL - try: - CDLL("libgnutls.26.dylib") - except OSError: - pass - try: - CDLL("libgnutls-extra.26.dylib") - except OSError: - pass -- cgit v1.2.3