Patch #1026986: Add OpenBSD 3.5 and 3.6 to list of broken systems.
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py
index 83e2174..d5ae5de 100644
--- a/Lib/test/test_tempfile.py
+++ b/Lib/test/test_tempfile.py
@@ -27,6 +27,8 @@
 # number of files that can be opened at one time (see ulimit -n)
 if sys.platform == 'mac':
     TEST_FILES = 32
+elif sys.platform == 'openbsd3':
+    TEST_FILES = 48
 else:
     TEST_FILES = 100