Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Doc/library/tempfile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,11 @@ The module defines the following user-callable items:

#. A platform-specific location:

* On Windows, the directories :file:`C:\\TEMP`, :file:`C:\\TMP`,
:file:`\\TEMP`, and :file:`\\TMP`, in that order.
* On Windows, the directories
:file:`%USERPROFILE%\AppData\Local\Temp`,
:file:`%SYSTEMROOT%\Temp`, :file:`C:\TEMP`,
:file:`C:\TMP`, :file:`\TEMP`, and
:file:`\TMP`, in that order.

* On all other platforms, the directories :file:`/tmp`, :file:`/var/tmp`, and
:file:`/usr/tmp`, in that order.
Expand Down
Loading