Kaydet (Commit) 16dffdca authored tarafından Guido van Rossum's avatar Guido van Rossum

Fix the NDELAY test; avoid outputting binary garbage.

üst f518d5e9
...@@ -12,17 +12,17 @@ filename = '/tmp/delete-me' ...@@ -12,17 +12,17 @@ filename = '/tmp/delete-me'
# the example from the library docs # the example from the library docs
f = open(filename,'w') 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: if verbose:
print 'Status from fnctl with O_NDELAY: ', rv print 'Status from fnctl with O_NDELAY: ', rv
lockdata = struct.pack('hhllhh', FCNTL.F_WRLCK, 0, 0, 0, 0, 0) lockdata = struct.pack('hhllhh', FCNTL.F_WRLCK, 0, 0, 0, 0, 0)
if verbose: if verbose:
print 'struct.pack: ', lockdata print 'struct.pack: ', `lockdata`
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW, lockdata) rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW, lockdata)
if verbose: if verbose:
print 'String from fcntl with F_SETLKW: ', rv print 'String from fcntl with F_SETLKW: ', `rv`
f.close() f.close()
os.unlink(filename) os.unlink(filename)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment