Tagged Questions
35
votes
6answers
8k 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 ...
25
votes
13answers
22k 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 ...
11
votes
1answer
600 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 ...
11
votes
2answers
979 views
drop into python interpreter while executing function
i have a python module with a function:
def do_stuff(param1 = 'a'):
if type(param1) == int:
# enter python interpreter here
do_something()
else:
do_something_else()
...
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 ...
6
votes
5answers
101 views
What is the difference between `>>> some_object` and `>>> print some_object` in the Python interpreter?
In the interpreter you can just write the name of an object e.g. a list a = [1, 2, 3, u"hellö"] at the interpreter prompt like this:
>>> a
[1, 2, 3, u'hell\xf6']
or you can do:
...
6
votes
5answers
370 views
Nice copying from Python Interpreter
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 copy code, ...
5
votes
3answers
292 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
2answers
257 views
Uniqueness of global Python objects void in sub-interpreters?
I have a question about inner-workings of Python sub-interpreter initialization (from Python/C API) and Python id() function. More precisely, about handling of global module objects in a WSGI Python ...
3
votes
1answer
117 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 ...
3
votes
3answers
60 views
python help() function shortcuts
What are shortcuts of Python help() function used in Python interpreter?
I'm interested for help content that doesn't fit to window and shows "-- More --" at the bottom. I found q quits help(). What ...
3
votes
1answer
110 views
Use the python interpreter packaged with py2exe
Hi guys this is my first question on stackOverflow and unfortunately it's a strange one.
I have a python script I want to distribute to Windows, where people might not have python installed. So I ...
2
votes
4answers
94 views
Export Python interpreter history to a file?
Many times I will use the Python interpreter to inspect variables and step through commands before I actually write to a file. However by the end I have around 30 commands in the interpreter, and have ...
2
votes
2answers
431 views
Eclipse using multiple Python interpreters with execnet
I'm using the execnet package to allow communication between Python scripts interpreted by different Python interpreters.
The following code (test_execnet.py):
import execnet
for python_version ...
2
votes
5answers
146 views
How to run python top level/interpreter with file input?
I've always wondered how to do this, it's useful for manual unit testing of individual python scrips. Say I had a python file that did something, and I wanted to run it in the top level, but after it ...
2
votes
1answer
696 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 ...
1
vote
2answers
114 views
how do you see the entire command history in interactive python?
I'm working on the default python interpreter on Mac OS X, and I Cmd+K (cleared) my earlier commands. I can go through them one by one using the arrow keys. But is there an option like the --history ...
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 ...
1
vote
2answers
281 views
Linux kernel that runs python file for init
Would it be possible and not incredibly difficult to build a linux kernel, with a python interpreter built in or accessible from the kernel, that could run a python file as it's init process?
1
vote
2answers
202 views
Is there a way to view the source code of a function, class, or module from the python interpreter?
Is there a way to view the source code of a function, class, or module from the python interpreter? (in addition to using help to view the docs and dir to view the attributes/methods)
0
votes
3answers
130 views
How to rewrite a specific frame in a traceback?
In python you can compile() string to be executed faster with exec(). But as soon as i use it, we lost information when an exception happen in the exec.
For example, here is a code snippet that ...
0
votes
1answer
65 views
How do I read the arguments in “args” passed to a builtin function in Python [source]?
Example (builtinmodule.c):
static PyObject *
builtin___import__(PyObject *self, PyObject *args, PyObject *kwds)
{
...
}
How do I go about getting the arguments, args, in string format? I ...
0
votes
1answer
67 views
How to find out what function the Python interpreter is calling from callable PyObject?
I'm trying to trace through the Python source code where a certain function is actually called and how to get its name.
In abstract.c:
PyObject *
PyObject_Call(PyObject *func, PyObject *arg, ...
0
votes
2answers
80 views
How to resolve bindings during execution with embedded Python?
I'm embedding Python into a C++ application. I plan to use PyEval_EvalCode to execute Python code, but instead of providing the locals and globals as dictionaries, I'm looking for a way to have my ...