diff options
author | Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy@users.noreply.github.com> | 2018-06-21 07:52:43 (GMT) |
---|---|---|
committer | Eric V. Smith <ericvsmith@users.noreply.github.com> | 2018-06-21 07:52:43 (GMT) |
commit | 940ae608566fd4446ff92a22705f646cde1d087c (patch) | |
tree | 352ca1b27b8d7b095d19f8b8a8acd5f7d68aaf26 /Doc | |
parent | 33c7420e7dd9d8e5b2aa15e98da6291bab6fcf33 (diff) | |
download | cpython-940ae608566fd4446ff92a22705f646cde1d087c.zip cpython-940ae608566fd4446ff92a22705f646cde1d087c.tar.gz cpython-940ae608566fd4446ff92a22705f646cde1d087c.tar.bz2 |
Clarified the tempfile.tempdir documentation (GH-7829)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tempfile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst index 79914e1..20046ee 100644 --- a/Doc/library/tempfile.rst +++ b/Doc/library/tempfile.rst @@ -262,7 +262,7 @@ to specify the directory and this is the recommended approach. default value for the *dir* argument to the functions defined in this module. - If ``tempdir`` is unset or ``None`` at any call to any of the above + If ``tempdir`` is ``None`` (the default) at any call to any of the above functions except :func:`gettempprefix` it is initialized following the algorithm described in :func:`gettempdir`. |