Tagged Questions

6
votes
7answers
2k views

How to clear python interpreter console?

Like most Python developers, I typically keep a console window open with the Python interpreter running to test commands, dir() stuff, help() stuff, etc. Like any console, after a while the visible …
5
votes
5answers
558 views

How to re import an updated package while in Python Interpreter ?

I often test my module in the Python Interpreter, and when I see an error, I quickly update the .py file. But how do I make it reflect on the Interpreter ? So, far I have been exiting and reentering …
5
votes
3answers
150 views

How can you programmatically tell the CPython interpreter to enter interactive mode when done?

If you invoke the cpython interpreter with the -i option, it will enter the interactive mode upon completing any commands or scripts it has been given to run. Is there a way, within a program to get …
4
votes
5answers
190 views

Nice copying from Python Interpreter

Hi all, When I am working with a Python Interpreter, I always find it a pain to try and copy code from it because it inserts all of these >>> and ... Is there a Python interpreter that will let me …
1
vote
2answers
131 views

Persistant Python Command-Line History

Hello, I'd like to be able to "up-arrow" to commands that I input in a previous Python interpreter. I have found the readline module which offers functions like: read_history_file, …
0
votes
1answer
138 views

What is the purpose of the sub-interpreter API in CPython?

I'm unclear on why the sub-interpreter API exists and why it's used in modules such as the mod_wsgi apache module. Is it mainly used for creating a security sandbox for different applications running …