Commit b723df77 authored by Yury Selivanov's avatar Yury Selivanov

tempfile: Fix docstring. Issue #21397, patch by R. David Murray.

parent 3cb859c3
"""Temporary files. """Temporary files.
This module provides generic, low- and high-level interfaces for This module provides generic, low- and high-level interfaces for
creating temporary files and directories. The interfaces listed creating temporary files and directories. All of the interfaces
as "safe" just below can be used without fear of race conditions. provided by this module can be used without fear of race conditions
Those listed as "unsafe" cannot, and are provided for backward except for 'mktemp'. 'mktemp' is subject to race conditions and
compatibility only. should not be used; it is provided for backward compatibility only.
This module also provides some data items to the user: This module also provides some data items to the user:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment