test_tempfile.py

来自「mallet是自然语言处理、机器学习领域的一个开源项目。」· Python 代码 · 共 11 行

PY
11
字号
# SF bug #476138: tempfile behavior across platforms# Ensure that a temp file can be closed any number of times without error.import tempfilef = tempfile.TemporaryFile("w+b")f.write('abc\n')f.close()f.close()f.close()

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?