##// END OF EJS Templates
add genutils.wrap_deprecated
add genutils.wrap_deprecated

File last commit:

r394:f53fc8ef
r444:859be262
Show More
__init__.py
72 lines | 2.9 KiB | text/x-python | PythonLexer
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 # -*- coding: utf-8 -*-
"""
IPython -- An enhanced Interactive Python
One of Python's nicest features is its interactive interpreter. This allows
very fast testing of ideas without the overhead of creating test files as is
typical in most programming languages. However, the interpreter supplied with
the standard Python distribution is fairly primitive (and IDLE isn't really
much better).
IPython tries to:
i - provide an efficient environment for interactive work in Python
programming. It tries to address what we see as shortcomings of the standard
Python prompt, and adds many features to make interactive work much more
efficient.
ii - offer a flexible framework so that it can be used as the base
environment for other projects and problems where Python can be the
underlying language. Specifically scientific environments like Mathematica,
IDL and Mathcad inspired its design, but similar ideas can be useful in many
fields. Python is a fabulous language for implementing this kind of system
(due to its dynamic and introspective features), and with suitable libraries
entire systems could be built leveraging Python's power.
iii - serve as an embeddable, ready to go interpreter for your own programs.
fperez
Defaults rename, clean up api to use properties or direct access rather than...
r284 IPython requires Python 2.3 or newer.
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
vivainio
First round of 'complete_command' hook, implements customizable command line ...
r394 $Id: __init__.py 1854 2006-10-30 19:54:25Z vivainio $"""
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
#*****************************************************************************
fperez
Small fix to sys.argv, match python's default behavior.
r298 # Copyright (C) 2001-2006 Fernando Perez. <fperez@colorado.edu>
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 #
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#*****************************************************************************
# Enforce proper version requirements
import sys
vivainio
Moved path to extensions - pickleshare failed because it imported...
r168
fperez
Arnd's wxversion support.
r91 if sys.version[0:3] < '2.3':
fperez
Small fix to sys.argv, match python's default behavior.
r298 raise ImportError('Python Version 2.3 or above is required for IPython.')
vivainio
Moved path to extensions - pickleshare failed because it imported...
r168
# Make it easy to import extensions - they are always directly on pythonpath.
# Therefore, non-IPython modules can be added to Extensions directory
import os
sys.path.append(os.path.dirname(__file__) + "/Extensions")
fperez
Small fix to sys.argv, match python's default behavior.
r298
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 # Define what gets imported with a 'from IPython import *'
fperez
Rename Struct to ipstruct, to fix a bug under windows due to shadowing of...
r98 __all__ = ['deep_reload','genutils','ipstruct','ultraTB','DPyGetOpt',
vivainio
Added platutils modules, now only needed for %cd to ...
r107 'Itpl','hooks','ConfigLoader','OutputTrap','Release','Shell',
vivainio
Added ipapi, the extension api for ipython....
r109 'platutils','platutils_win32','platutils_posix','platutils_dummy',
vivainio
First round of 'complete_command' hook, implements customizable command line ...
r394 'ipapi','rlineimpl', 'strdispatch']
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
# Load __all__ in IPython namespace so that a simple 'import IPython' gives
# access to them via IPython.<name>
glob,loc = globals(),locals()
for name in __all__:
__import__(name,glob,loc,[])
# Release data
from IPython import Release # do it explicitly so pydoc can see it - pydoc bug
fperez
Simple change to add svn revision info at the top level and crash handler....
r17 __author__ = '%s <%s>\n%s <%s>\n%s <%s>' % \
( Release.authors['Fernando'] + Release.authors['Janko'] + \
Release.authors['Nathan'] )
__license__ = Release.license
__version__ = Release.version
__revision__ = Release.revision
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
# Namespace cleanup
del name,glob,loc