Fix the NDELAY test; avoid outputting binary garbage.

This commit is contained in:
Guido van Rossum 1997-05-09 02:06:05 +00:00
parent f518d5e98e
commit 16dffdca1a
1 changed files with 3 additions and 3 deletions

View File

@ -12,17 +12,17 @@ filename = '/tmp/delete-me'
# the example from the library docs
f = open(filename,'w')
rv = fcntl.fcntl(f.fileno(), FCNTL.O_NDELAY, 1)
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETFL, FCNTL.FNDELAY)
if verbose:
print 'Status from fnctl with O_NDELAY: ', rv
lockdata = struct.pack('hhllhh', FCNTL.F_WRLCK, 0, 0, 0, 0, 0)
if verbose:
print 'struct.pack: ', lockdata
print 'struct.pack: ', `lockdata`
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW, lockdata)
if verbose:
print 'String from fcntl with F_SETLKW: ', rv
print 'String from fcntl with F_SETLKW: ', `rv`
f.close()
os.unlink(filename)