From b4b50e7348815402634b6b559b48191dba00a751 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 12 Jan 2011 17:30:11 +0100 Subject: OSX Signal handling: removed previous hack to fix it somehow using sleep - the error was caused by PySide which, when instantiating a QApplication, changed the signal handlers to interrupt, instead of retry operating system calls, which caused git-python to fail subsequently. signal.siginterrupt can be used to fix this behaviour after an QApplication was instatiated. --- git/diff.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'git/diff.py') diff --git a/git/diff.py b/git/diff.py index c2597bd9..7b3bf6b5 100644 --- a/git/diff.py +++ b/git/diff.py @@ -11,7 +11,6 @@ from exc import GitCommandError from gitdb.util import hex_to_bin -from util import sleep_on_gui_present_osx_crashfix __all__ = ('Diffable', 'DiffIndex', 'Diff') @@ -101,7 +100,6 @@ class Diffable(object): diff_method = Diff._index_from_patch_format index = diff_method(self.repo, proc.stdout) - sleep_on_gui_present_osx_crashfix() status = proc.wait() return index -- cgit v1.2.1