[New-bugs-announce] [issue24716] Multiple fdopen() on mkstemp() descriptor crashes py27 interpreter

Thomas Krijnen report at bugs.python.org
Sat Jul 25 11:57:50 CEST 2015


New submission from Thomas Krijnen:

Following code crashes my Python 2.7.9 interpreter on Windows:

import os, tempfile
a, b = tempfile.mkstemp()
f = os.fdopen(a, "wb")
f = os.fdopen(a, "wb")
f.write("beer")
f.close()

----------
components: Windows
messages: 247329
nosy: Thomas Krijnen, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: Multiple fdopen() on mkstemp() descriptor crashes py27 interpreter
type: crash
versions: Python 2.7

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue24716>
_______________________________________


More information about the New-bugs-announce mailing list