##// END OF EJS Templates
Backport PR #4453: Play nice with App Nap...
Backport PR #4453: Play nice with App Nap Ships @minrk/appnope in `IPython.external`, which uses ctypes to make the appropriate NSProcessInfo calls. It does not disable App Nap outright, rather making the appropriate context manager calls to disable it only around the critical block. The important change is that `QSocketNotifier` is used to trigger event handling in the kernel, rather than a Timer, which should never have been used. should close #4431

File last commit:

r10381:394e1eb3
r13962:cea51739
Show More
ipcontroller
16 lines | 654 B | text/plain | TextLexer
#!/usr/bin/env python
# encoding: utf-8
#-----------------------------------------------------------------------------
# Copyright (C) 2008-2009 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from IPython.parallel.apps.ipcontrollerapp import launch_new_instance
launch_new_instance()