diff options
author | Guido van Rossum <guido@python.org> | 1997-05-09 02:06:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-09 02:06:05 (GMT) |
commit | 16dffdca1a6a98a9b44f6d0560e8a85c1018c4fb (patch) | |
tree | 0d82a5c4ef66d2509e2ee8e78148312cdd2b0299 /Lib | |
parent | f518d5e98e73fcd6f212e3770e61f0b7eb752dee (diff) | |
download | cpython-16dffdca1a6a98a9b44f6d0560e8a85c1018c4fb.zip cpython-16dffdca1a6a98a9b44f6d0560e8a85c1018c4fb.tar.gz cpython-16dffdca1a6a98a9b44f6d0560e8a85c1018c4fb.tar.bz2 |
Fix the NDELAY test; avoid outputting binary garbage.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/test_fcntl.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py index 4929fbb..c563018 100755 --- a/Lib/test/test_fcntl.py +++ b/Lib/test/test_fcntl.py @@ -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) |