##// END OF EJS Templates
First semi-complete support for -pylab and %pylab....
First semi-complete support for -pylab and %pylab. Now the magic works, -pylab -*thread work (with one or two dashes, and alone or combined). Other minor fixes and cleanups, including initializing the exception mode correctly.

File last commit:

r1307:39e4613c
r2363:f4d0cb7d
Show More
IPythonCocoaFrontendLoader.py
25 lines | 841 B | text/x-python | PythonLexer
/ IPython / frontend / 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)