Tagged Questions

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 ...
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, ...