[Python-checkins] r42514 - python/branches/release24-maint/Lib/test/test_fcntl.py

georg.brandl python-checkins at python.org
Mon Feb 20 11:32:05 CET 2006


Author: georg.brandl
Date: Mon Feb 20 11:32:05 2006
New Revision: 42514

Modified:
   python/branches/release24-maint/Lib/test/test_fcntl.py
Log:
Bug #1101233: fix test_fcntl on netbsd2 platform.


Modified: python/branches/release24-maint/Lib/test/test_fcntl.py
==============================================================================
--- python/branches/release24-maint/Lib/test/test_fcntl.py	(original)
+++ python/branches/release24-maint/Lib/test/test_fcntl.py	Mon Feb 20 11:32:05 2006
@@ -20,7 +20,7 @@
 if sys.platform.startswith('atheos'):
     start_len = "qq"
 
-if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin',
+if sys.platform in ('netbsd1', 'netbsd2', 'Darwin1.2', 'darwin',
                     'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'freebsd6',
                     'bsdos2', 'bsdos3', 'bsdos4',
                     'openbsd', 'openbsd2', 'openbsd3'):


More information about the Python-checkins mailing list