##// END OF EJS Templates
Remove svn-style $Id marks from docstrings and Release imports....
Remove svn-style $Id marks from docstrings and Release imports. The Id marks show up as junk in the API docs (and they were outdated anyway, since we now use bzr). The Release imports were in there for pulling author/license information for epydoc, but now with sphinx they aren't necessary, and they just are extra startup work.

File last commit:

r723:21a6130e
r1853:b8f5152c
Show More
ipy_system_conf.py
24 lines | 528 B | text/x-python | PythonLexer
vivainio
config changes
r130 """ System wide configuration file for IPython.
This will be imported by ipython for all users.
After this ipy_user_conf.py is imported, user specific configuration
should reside there.
"""
vivainio
Fix %upgrade, and suggest using it.
r226 import IPython.ipapi
ip = IPython.ipapi.get()
vivainio
config changes
r130
# add system wide configuration information, import extensions etc. here.
# nothing here is essential
import sys
vivainio
a = !ls, a = %alias now work (captures output or gets ret val for aliases)...
r151 import ext_rescapture # var = !ls and var = %magic
vivainio
Fix %upgrade, and suggest using it.
r226 import pspersistence # %store magic
vivainio
%clear magic added. fix CachedOutput.flush to flush data properly
r242 import clearcmd # %clear
vivainio
Fix %upgrade, and suggest using it.
r226
vivainio
create app_completes, move non-core completers there, install stock completers as default, ipy_signals in sh profile
r681 import ipy_stock_completers
vivainio
added %rep, factored %hist to maghistory, added examples/extension.py template for new magics
r689
vivainio
switch to _ip.load -> init_ipython(ip) approach for loading IPython modules
r723 ip.load('IPython.history')