~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: paulbrianstewart at gmail
  • Date: 2011-08-13 23:07:36 UTC
  • mto: This revision was merged to the branch mainline in revision 6069.
  • Revision ID: paulbrianstewart@gmail.com-20110813230736-lqi6eek015wh23yv
Added punctuation to the commit message

Show diffs side-by-side

added added

removed removed

Lines of Context:
2487
2487
    is_local_pid_dead = win32utils.is_local_pid_dead
2488
2488
else:
2489
2489
    is_local_pid_dead = _posix_is_local_pid_dead
2490
 
 
2491
 
 
2492
 
def fdatasync(fileno):
2493
 
    """Flush file contents to disk if possible.
2494
 
    
2495
 
    :param fileno: Integer OS file handle.
2496
 
    :raises TransportNotPossible: If flushing to disk is not possible.
2497
 
    """
2498
 
    fn = getattr(os, 'fdatasync', getattr(os, 'fsync', None))
2499
 
    if fn is not None:
2500
 
        fn(fileno)