howto
Links
- python-passfd
- This simple extension provides two functions to pass
and receive file descriptors across UNIX domain
sockets, using the BSD-4.3+ sendmsg() and recvmsg()
interfaces.
- Don't write .pyo or .pyc files
- From SO: link
- sys.dont_write_bytecode: Python code can change the value to modify the interpreter’s behaviour.
PYTHONDONTWRITEBYTECODE
environment variable.
-B
command line switch when invoking the
interpreter.
- Python 3.2 introduces the
__
pycache__
directory for such files.
See What's New in Python 3.2 - PYC Repository Directories