diff options
Diffstat (limited to 'Lib/tempfile.py')
-rw-r--r-- | Lib/tempfile.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py index 7d7f924..fe4d291 100644 --- a/Lib/tempfile.py +++ b/Lib/tempfile.py @@ -6,6 +6,8 @@ import os +__all__ = ["mktemp", "TemporaryFile", "tempdir", "gettempprefix"] + # Parameters that the caller may set to override the defaults tempdir = None template = None |