This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: no doc for os.fsync and os.fdatasync
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: fdrake, phr, rhettinger
Priority: normal Keywords:

Created on 2002-07-22 01:26 by phr, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
libos.diff rhettinger, 2002-08-07 15:00 Doc patch for libos file descriptor section
Messages (4)
msg11656 - (view) Author: paul rubin (phr) Date: 2002-07-22 01:26
These are actually in the posix module.  I needed to
use fsync or fdatasync to synchronize a database and
they weren't in the manual.  I was about to enter a
feature request to add these calls to the os module but
it turns out they are already there, just undocumented.
 The docs should list them.  There are probably other
calls in dir(os) that aren't in the docs, so they
should be documented too.
msg11657 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2002-08-07 15:00
Logged In: YES 
user_id=80475

Documentation patch attach attached for Fred's approval.
msg11658 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2002-08-07 15:23
Logged In: YES 
user_id=3066

Both of the descriptions need \end{funcdesc} at the end. 
Fix that and check it in!
msg11659 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2002-08-07 15:50
Logged In: YES 
user_id=80475

Added \end{funcdesc}.
Committed to libos.tex versions 1.94 and 1.74.2.1.2.6
Closing bug.
History
Date User Action Args
2022-04-10 16:05:31adminsetgithub: 36917
2002-07-22 01:26:02phrcreate