Tagged Questions

4
votes
2answers
268 views

Python: Why does `sys.exit(msg)` called from a thread not print `msg` to stderr?

Hello! Today I ran against the fact, that sys.exit() called from a child-thread does not kill the main process. I did not know this before, and this is okay, but I needed long time to realize this. …
2
votes
1answer
648 views

Python’s sys.path value

Where is Python's sys.path initialized from? UPD: Python is adding some paths before refering to PYTHONPATH: >>> import sys >>> from pprint import pprint as p …
-4
votes
1answer
206 views

delete *.pyc continuation

As a follow-up to this question, I have a new question: What is happening internally in os.remove(module_name) and del sys.modules["module_name"]? I need an urgent help for this.Please help me out. …
0
votes
2answers
316 views

Is it possible to write to a python frame object as returned by sys._getframe() from python code running within the interpreter?

Apropos of This question, there is a bit of scaffolding within the interpreter to inspect frame objects, which can be retrieved by sys._getframe(). The frame objects appear to be read only, but I …