diff options
| author | Guido van Rossum <guido@python.org> | 1997-05-22 20:48:03 (GMT) |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1997-05-22 20:48:03 (GMT) |
| commit | f1e63545483a3b4eb7d8357e8a1ed2cb048bbb00 (patch) | |
| tree | bb0a99e2f85607bec83bca986256c54cd3f05505 /Lib/dos-8x3/test_fcn.py | |
| parent | c2d14176153038d568770f5499c8aa6a8c6a93fc (diff) | |
| download | cpython-f1e63545483a3b4eb7d8357e8a1ed2cb048bbb00.zip cpython-f1e63545483a3b4eb7d8357e8a1ed2cb048bbb00.tar.gz cpython-f1e63545483a3b4eb7d8357e8a1ed2cb048bbb00.tar.bz2 | |
The usual
Diffstat (limited to 'Lib/dos-8x3/test_fcn.py')
| -rw-r--r-- | Lib/dos-8x3/test_fcn.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/dos-8x3/test_fcn.py b/Lib/dos-8x3/test_fcn.py index 4929fbb..a5ea1e6 100644 --- a/Lib/dos-8x3/test_fcn.py +++ b/Lib/dos-8x3/test_fcn.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, os.O_NONBLOCK) if verbose: - print 'Status from fnctl with O_NDELAY: ', rv + print 'Status from fnctl with O_NONBLOCK: ', 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) |
