[Python-checkins] r47058 - python/trunk/Lib/test/test_fcntl.py

georg.brandl python-checkins at python.org
Wed Jun 21 19:52:37 CEST 2006


Author: georg.brandl
Date: Wed Jun 21 19:52:36 2006
New Revision: 47058

Modified:
   python/trunk/Lib/test/test_fcntl.py
Log:
Make test_fcntl aware of netbsd3.



Modified: python/trunk/Lib/test/test_fcntl.py
==============================================================================
--- python/trunk/Lib/test/test_fcntl.py	(original)
+++ python/trunk/Lib/test/test_fcntl.py	Wed Jun 21 19:52:36 2006
@@ -20,9 +20,10 @@
 if sys.platform.startswith('atheos'):
     start_len = "qq"
 
-if sys.platform in ('netbsd1', 'netbsd2', 'Darwin1.2', 'darwin',
-                    'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'freebsd6',
-                    'freebsd7',
+if sys.platform in ('netbsd1', 'netbsd2', 'netbsd3',
+                    'Darwin1.2', 'darwin',
+                    'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
+                    'freebsd6', 'freebsd7',
                     'bsdos2', 'bsdos3', 'bsdos4',
                     'openbsd', 'openbsd2', 'openbsd3'):
     if struct.calcsize('l') == 8:


More information about the Python-checkins mailing list