##// END OF EJS Templates
Add explicit comment about disabled code in importstring....
Add explicit comment about disabled code in importstring. This lets us know the deactivated code is meant for eventual deletion (the replacement was written by T. Kluyver in his 2to3 preparation work, we just need to be sure we have no problems with it in more testing).

File last commit:

r2267:928c921b
r3121:41eb15e3
Show More
ipy_exportdb.py
77 lines | 2.0 KiB | text/x-python | PythonLexer
Brian Granger
ipapi.py => core/ipapi.py and imports updated.
r2027 from IPython.core import ipapi
Brian Granger
macro.py => core/macro.py and upated imports.
r2033 from IPython.core import macro
Brian Granger
ipapi.py => core/ipapi.py and imports updated.
r2027 ip = ipapi.get()
vivainio
crlf cleanup
r680
import os,pprint
def export(filename = None):
Brian Granger
ipapi.py => core/ipapi.py and imports updated.
r2027 lines = ['import IPython.core.ipapi', 'ip = IPython.core.ipapi.get()','']
vivainio
crlf cleanup
r680
vars = ip.db.keys('autorestore/*')
vars.sort()
varstomove = []
get = ip.db.get
macros = []
variables = []
for var in vars:
k = os.path.basename(var)
v = get(var)
if k.startswith('_'):
continue
Brian Granger
macro.py => core/macro.py and upated imports.
r2033 if isinstance(v, macro.Macro):
vivainio
crlf cleanup
r680 macros.append((k,v))
if type(v) in [int, str, float]:
variables.append((k,v))
if macros:
lines.extend(['# === Macros ===' ,''])
for k,v in macros:
lines.append("ip.defmacro('%s'," % k)
for line in v.value.splitlines():
lines.append(' ' + repr(line+'\n'))
lines.extend([')', ''])
if variables:
lines.extend(['','# === Variables ===',''])
for k,v in variables:
varstomove.append(k)
lines.append('%s = %s' % (k,repr(v)))
Brian Granger
Continuing a massive refactor of everything.
r2205 lines.append('ip.push("%s")' % (' '.join(varstomove)))
vivainio
crlf cleanup
r680
bkms = ip.db.get('bookmarks',{})
if bkms:
lines.extend(['','# === Bookmarks ===',''])
lines.append("ip.db['bookmarks'] = %s " % pprint.pformat(bkms, indent = 2) )
aliases = ip.db.get('stored_aliases', {} )
if aliases:
lines.extend(['','# === Alias definitions ===',''])
for k,v in aliases.items():
vivainio
ipy_exportdb now tolerates new style aliases'
r809 try:
Brian Granger
Continuing a massive refactor of everything.
r2205 lines.append("ip.define_alias('%s', %s)" % (k, repr(v[1])))
vivainio
ipy_exportdb now tolerates new style aliases'
r809 except (AttributeError, TypeError):
pass
vivainio
crlf cleanup
r680
env = ip.db.get('stored_env')
if env:
lines.extend(['','# === Stored env vars ===',''])
lines.append("ip.db['stored_env'] = %s " % pprint.pformat(env, indent = 2) )
out = '\n'.join(lines)
if filename:
open(filename,'w').write(out)
else:
print out