diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-02-22 10:10:55 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-02-22 10:10:55 +0000 |
commit | fe93283fe1142f6ef007dc6e5aecdaae2d1f89d1 (patch) | |
tree | 47087a86bce9cdc2f38d6d046f08fb0d10500463 /Doc | |
parent | 0d34530fe0c18ce39f163e5d711b355025cf129e (diff) | |
parent | 1f0e1f3cbbb5205b3c6787da268051f84b338739 (diff) | |
download | cpython-git-fe93283fe1142f6ef007dc6e5aecdaae2d1f89d1.tar.gz |
Issue #26261: Merge NamedTemporaryFile docs from 3.5
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tempfile.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst index 19e1e7faaf..b714d0ff92 100644 --- a/Doc/library/tempfile.rst +++ b/Doc/library/tempfile.rst @@ -74,7 +74,8 @@ The module defines the following user-callable items: This function operates exactly as :func:`TemporaryFile` does, except that the file is guaranteed to have a visible name in the file system (on Unix, the directory entry is not unlinked). That name can be retrieved - from the :attr:`name` attribute of the file object. Whether the name can be + from the :attr:`name` attribute of the returned + file-like object. Whether the name can be used to open the file a second time, while the named temporary file is still open, varies across platforms (it can be so used on Unix; it cannot on Windows NT or later). If *delete* is true (the default), the file is |