Changeset 2814
- Timestamp:
- 05/13/13 11:52:13 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/asap
r2651 r2814 2 2 import os 3 3 4 def main10():4 def _main10(): 5 5 from IPython.Shell import IPShellEmbed 6 6 … … 14 14 15 15 16 def main11():16 def _main11(): 17 17 from IPython.config.loader import Config 18 18 cfg = Config() … … 39 39 vers = int(IPython.__version__.split(".")[1]) 40 40 if vers >= 11: 41 ipshell = main11()41 ipshell = _main11() 42 42 else: 43 ipshell = main10()43 ipshell = _main10() 44 44 ipshell() 45 45 … … 48 48 import code 49 49 from asap import * 50 del main51 50 code.interact(banner, local=locals())
Note:
See TracChangeset
for help on using the changeset viewer.