我正在尝试将 mkstemp 与 Python 3 一起使用:
Python 3.2.3 (default, Jun 25 2012, 23:10:56)
[GCC 4.7.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from tempfile import mkstemp
>>> mkstemp()
(3, '/tmp/tmp080316')
根据文档,元组的第一个元素应该是文件句柄。事实上,它是一个int。如何获得正确的文件对象?