diff options
Diffstat (limited to 'Doc/library/posixfile.rst')
-rw-r--r-- | Doc/library/posixfile.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/posixfile.rst b/Doc/library/posixfile.rst index 5ed3483..aaacc22 100644 --- a/Doc/library/posixfile.rst +++ b/Doc/library/posixfile.rst @@ -1,6 +1,3 @@ -.. % Manual text and implementation by Jaap Vermeulen - - :mod:`posixfile` --- File-like objects with locking support =========================================================== @@ -15,8 +12,6 @@ .. index:: pair: POSIX; file object .. deprecated:: 1.5 - .. index:: single: lockf() (in module fcntl) - The locking operation that this module provides is done better and more portably by the :func:`fcntl.lockf` call. @@ -29,8 +24,6 @@ new file object, the posixfile object. It has all the standard file object methods and adds the methods described below. This module only works for certain flavors of Unix, since it uses :func:`fcntl.fcntl` for file locking. -.. % - To instantiate a posixfile object, use the :func:`open` function in the :mod:`posixfile` module. The resulting object looks and feels roughly the same as a standard file object. |