From: Michael W. Hudson Date: Fri, 23 Aug 2002 16:06:46 +0000 (+0000) Subject: backport gvanrossum's checkin of X-Git-Tag: v2.2.2b1~202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caa276401badd2d22f6cec12db7c710b495db503;p=thirdparty%2FPython%2Fcpython.git backport gvanrossum's checkin of revision 1.22 of test_fcntl.py SF 554663. Add OpenBSD3. Bugfix candidate if anyone cares. --- 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)