Tagged Questions

11
votes
1answer
562 views

Python Compilation/Interpretation Process

Hey all, I'm trying to understand the python compiler/interpreter process more clearly. Unfortunately, I have not taken a class in interpreters nor have I read much about them. Basically, what I ...
7
votes
2answers
1k views

Persistant Python Command-Line History

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, write_history_file, and ...
3
votes
1answer
92 views

How come when I press the Up or Down Arrow keys in the Python interpreter I get ^[[A or ^[[B instead of history? [closed]

Possible Duplicate: Python shell: Arrow keys do not work on remote machine I have no idea why history won't work in the Python 2.7.2 interpreter. I get strange character groups for each of ...
1
vote
0answers
87 views

Python parameter scope [closed]

Possible Duplicate: “Least Astonishment” in Python: The Mutable Default Argument I have learned by the hard way that native objects, such as lists and dictionaries, when ...