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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/samples/all_tests ('k') | client/samples/build » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/samples/autotest_console
diff --git a/client/samples/autotest_console b/client/samples/autotest_console
deleted file mode 100644
index 3825323e6709b9ea79222e9b20fb8f94f58666a5..0000000000000000000000000000000000000000
--- a/client/samples/autotest_console
+++ /dev/null
@@ -1,16 +0,0 @@
-# autotest_console.control - gives you an interactive interpreter within an
-# autotest control file.
-
-# If you install IPython (http://ipython.scipy.org/, Ubuntu package "ipython"),
-# you'll get a snazzy IPython console with readline and completion and all that.
-# Otherwise you'll get a simple console without any of that.
-
-# -Steve Howard (showard@google.com)
-
-try:
- import IPython
- ipshell = IPython.Shell.IPShellEmbed(argv=[])
- ipshell()
-except ImportError:
- import code
- code.interact('Autotest console', raw_input, local_env)
« 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