##// END OF EJS Templates
Merge pull request #921 from minrk/traiterror...
Merge pull request #921 from minrk/traiterror Show invalid config message on TraitErrors during initialization. implemented via `@catch_config` decorator Now, the event that was triggered by invalid app config (see `--log-level 5`) is triggered by bad config at any point during initialization. This *will* catch TraitError-raising bugs in IPython itself, but only during initialization. Also, deregister crash handler on use to avoid it being triggered recursively/repeatedly.

File last commit:

r2661:595fc3b9
r5216:6fb30aea merge
Show More
IPythonCocoaFrontendLoader.py
25 lines | 841 B | text/x-python | PythonLexer
/ IPython / deathrow / oldfrontend / cocoa / plugin / IPythonCocoaFrontendLoader.py
# encoding: utf-8
"""
Provides a namespace for loading the Cocoa frontend via a Cocoa plugin.
Author: Barry Wark
"""
__docformat__ = "restructuredtext en"
#-----------------------------------------------------------------------------
# Copyright (C) 2008 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.
#-----------------------------------------------------------------------------
from PyObjCTools import AppHelper
from twisted.internet import _threadedselect
#make sure _threadedselect is installed first
reactor = _threadedselect.install()
# load the Cocoa frontend controller
from IPython.frontend.cocoa.cocoa_frontend import IPythonCocoaController
reactor.interleave(AppHelper.callAfter)
assert(reactor.running)