Commit 20f0b36a authored by Guido van Rossum's avatar Guido van Rossum

test_many(): open only 100 temp files, not 1000. Some systems don't

allow that many open files per process.  I don't see that 1000 makes
any difference for the test.
parent d28216b2
......@@ -156,7 +156,7 @@ class test__RandomNameSequence(TC):
dict = {}
r = self.r
for i in xrange(1000):
for i in xrange(100):
s = r.next()
self.nameCheck(s, '', '', '')
self.failIf(s in dict)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment