I'm using Python 2.7 on Windows XP.
My script relies on tempfile.mkstemp and tempfile.mkdtemp to create a lot of files and directories with the following pattern:
_,_tmp = mkstemp(prefix=section,dir=indir,text=True)
<do something with file>
os.close(_)
Running the script always incurs the following error (although the exact line number changes, etc.). The actual file that the script is attempting to open varies.
OSError: [Errno 24] Too many open files: 'path\\to\\most\\recent\\attempt\\to\\open\\file'
Any thoughts on how I might debug this? Also, let me know if you would like additional information. Thanks!
EDIT:
Here's an example of use:
out = os.fdopen(_,'w')
out.write("Something")
out.close()
with open(_) as p:
p.read()
withstatements may also help. – larsmans Aug 31 '12 at 14:51withstatement every time I open files. To debug, I added a check to make sure that these were actually being closed. – David C Aug 31 '12 at 14:54_is the problem because its value may be changed implicitly by stuff in the "< do something with file > " code. – martineau Aug 31 '12 at 17:05_be implicitly changed? The <do something with file> only writes to and reads the file. – David C Aug 31 '12 at 17:43mkstemp()is already open when the function returns -- i.e. you're not opening it again are you? – martineau Aug 31 '12 at 18:17