##// END OF EJS Templates
Merge pull request #1657 from tkf/editor-wait-opt...
Merge pull request #1657 from tkf/editor-wait-opt Add `wait` optional argument to `hooks.editor`. As indicated the discussion for #1655 (superseded by this PR), this allows users to define custom magics that can call editors without waiting for a return value.

File last commit:

r5390:c82649ea
r6752:e881f314 merge
Show More
IPythonCocoaFrontendLoader.py
25 lines | 846 B | text/x-python | PythonLexer
/ IPython / deathrow / oldfrontend / cocoa / plugin / IPythonCocoaFrontendLoader.py
Barry Wark
revived CocoaFrontendPlugin project
r1307 # encoding: utf-8
"""
Provides a namespace for loading the Cocoa frontend via a Cocoa plugin.
Author: Barry Wark
"""
__docformat__ = "restructuredtext en"
#-----------------------------------------------------------------------------
Matthias BUSSONNIER
update copyright to 2011/20xx-2011...
r5390 # Copyright (C) 2008-2011 The IPython Development Team
Barry Wark
revived CocoaFrontendPlugin project
r1307 #
# 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)