From a41331a402f0ea69a07defe6b460f9389cbf4ec1 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 19 Feb 2015 22:41:36 +0100 Subject: [PATCH] Remove test QApplication "fix" again. This causes more segfaults than it prevents... --- qutebrowser/test/__init__.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/qutebrowser/test/__init__.py b/qutebrowser/test/__init__.py index a17e82337..8c1a54b99 100644 --- a/qutebrowser/test/__init__.py +++ b/qutebrowser/test/__init__.py @@ -19,13 +19,8 @@ """The qutebrowser test suite.""" -import atexit -import functools - -import sip from PyQt5.QtWidgets import QApplication # We create a singleton QApplication here. qApp = QApplication([]) -atexit.register(functools.partial(sip.delete, qApp))