summaryrefslogtreecommitdiff
path: root/lang/python20/patches/patch-bb
blob: 38e62362a0338a85ed4d9bff9bb0ba834a8a46fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$NetBSD: patch-bb,v 1.2 2005/07/29 13:27:26 drochner Exp $

--- Lib/test/test_fcntl.py.orig	2004-08-28 19:24:26.000000000 +0200
+++ Lib/test/test_fcntl.py	2004-08-28 19:25:18.000000000 +0200
@@ -16,11 +16,11 @@
 if verbose:
     print 'Status from fnctl with O_NONBLOCK: ', rv
     
-if sys.platform in ('netbsd1', 'Darwin1.2',
+if sys.platform in ('netbsd1', 'netbsd2', 'netbsd3', 'Darwin1.2',
                     'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
                     'bsdos2', 'bsdos3', 'bsdos4',
                     'openbsd', 'openbsd2'):
-    lockdata = struct.pack('lxxxxlxxxxlhh', 0, 0, 0, FCNTL.F_WRLCK, 0)
+    lockdata = struct.pack('ixxxxixxxxihh', 0, 0, 0, FCNTL.F_WRLCK, 0)
 elif sys.platform in ['aix3', 'aix4', 'hp-uxB']:
     lockdata = struct.pack('hhlllii', FCNTL.F_WRLCK, 0, 0, 0, 0, 0, 0)
 else: