commit | 541a48b262a099d55298e32f62d8b1f4a0b97e8e | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Tue Sep 05 02:54:42 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Tue Sep 05 02:54:42 2006 +0000 |
tree | 9ca40a65b3b8bfffa2f0abef92e907444b8248bf | |
parent | 716692ff13ac13278da4eb078b2b1e46eaf4aab1 [diff] [blame] |
Patch #1540470, for OpenBSD 4.0. Backport candidate for 2.[34].
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index aeaa77e..2047a63 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py
@@ -27,7 +27,7 @@ # number of files that can be opened at one time (see ulimit -n) if sys.platform == 'mac': TEST_FILES = 32 -elif sys.platform == 'openbsd3': +elif sys.platform in ('openbsd3', 'openbsd4'): TEST_FILES = 48 else: TEST_FILES = 100