shared file access in python

Peter Hansen peter at engcorp.com
Fri Jun 18 21:21:52 EDT 2004


Lev Elblert wrote:

> Does Python allow to open files in shared mode like fsopen or _open
> do? If not how to make it happen?

Probably the "os" module's version of open() will do what you
need: http://docs.python.org/lib/os-fd-ops.html, assuming the
standard builtin open() is not doing what you need.

-Peter



More information about the Python-list mailing list