From caa276401badd2d22f6cec12db7c710b495db503 Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Fri, 23 Aug 2002 16:06:46 +0000 Subject: [PATCH] backport gvanrossum's checkin of revision 1.22 of test_fcntl.py SF 554663. Add OpenBSD3. Bugfix candidate if anyone cares. --- Lib/test/test_fcntl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py index 1cb62b5d6d0a..4ead0da10ae8 100755 --- a/Lib/test/test_fcntl.py +++ b/Lib/test/test_fcntl.py @@ -19,7 +19,7 @@ else: if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin', 'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'bsdos2', 'bsdos3', 'bsdos4', - 'openbsd', 'openbsd2'): + 'openbsd', 'openbsd2', 'openbsd3'): lockdata = struct.pack('lxxxxlxxxxlhh', 0, 0, 0, fcntl.F_WRLCK, 0) elif sys.platform in ['aix3', 'aix4', 'hp-uxB', 'unixware7']: lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0) -- 2.47.3