Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: client/samples/autotest_console

Issue 4823005: Merge remote branch 'cros/upstream' into tempbranch (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: patch Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/samples/all_tests ('k') | client/samples/build » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # autotest_console.control - gives you an interactive interpreter within an
2 # autotest control file.
3
4 # If you install IPython (http://ipython.scipy.org/, Ubuntu package "ipython"),
5 # you'll get a snazzy IPython console with readline and completion and all that.
6 # Otherwise you'll get a simple console without any of that.
7
8 # -Steve Howard (showard@google.com)
9
10 try:
11 import IPython
12 ipshell = IPython.Shell.IPShellEmbed(argv=[])
13 ipshell()
14 except ImportError:
15 import code
16 code.interact('Autotest console', raw_input, local_env)
OLDNEW
« no previous file with comments | « client/samples/all_tests ('k') | client/samples/build » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698