Tagged Questions
The interactive-mode tag has no wiki summary.
11
votes
10answers
1k views
Why use Python interactive mode?
When I first started reading about Python, all of the tutorials have you use Python's Interactive Mode. It is difficult to save, write long programs, or edit your existing lines (for me at least). It ...
4
votes
1answer
968 views
Make Emacs use UTF-8 with Python Interactive Mode
When I start Python from Mac OS' Terminal.app, python recognises the encoding as UTF-8:
$ python3.0
Python 3.0.1 (r301:69556, May 18 2009, 16:44:01)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
...
3
votes
1answer
63 views
Linux C: interactive output
I'm developing some kind of mysql monitoring tool so I need interactive output like top command.
Is there any lib that can be used for this?
Thank you for you answers beforehand.
2
votes
2answers
64 views
What are the magic variables in CLISP's REPL?
I have noticed that when I type an operator in REPL, it is often expanded into a value which has something to do with the input/output history.
Specifically I noticed that:
+, ++ ... expand to ...
2
votes
1answer
62 views
Specifying system properties in Grails 2.0 interactive mode
Is there a way how to specify system property in (already started) grails interactive mode ?
For example I would specify environment in command line:
grails -Dgrails.env=staging run-app
but in ...
2
votes
2answers
575 views
Exact semantics of Matplotlib's “interactive mode” (ion(), ioff())?
The documentation for the "interactive mode" in Matplotlib's pyplot reads:
The interactive property of the pyplot interface controls whether a figure canvas is drawn on every pyplot command. If ...
1
vote
2answers
603 views
mac os php intratactive mode has no prompt
I'm trying to run PHP in interactive mode from the terminal window and when i run the command
php -a
it says "Interactive mode enabled" but does not show me the "php->" prompt that it should. I ...
1
vote
1answer
184 views
Handling exceptions without try block in Python's interactive shell
See the title of this question. I want to play with the exception raised in the last command. _ didn't help me. Is there anything like that?
0
votes
2answers
59 views
How to have offline CLHS available from the REPL?
I'm using GNU Common Lisp on Windows.
In interactive moed, after I type (funcnTAB, the REPL auto-completes the function name. When I press TAB again, the debugger triggers as follows:
Break 1 ...
0
votes
1answer
57 views
Python - Interactive mode vs. normal invocation of the interpreter
Is there a difference between the two modes in terms of resources, especially memory? I'm referring to Python in the title but if there is a common explanation to many interpreted languages (Octave, ...