This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pablogsal
Recipients John Hagen, brett.cannon, pablogsal
Date 2019-03-19.00:50:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552956607.3.0.737740706141.issue36309@roundup.psfhosted.org>
In-reply-to
Content
There was a warning, but it was suppressed by this commit:

commit 44f602dd3b452bbacd3c85b1e5f9873c892b46e3
Author: Guido van Rossum <guido@python.org>
Date:   Fri Nov 22 15:56:29 2002 +0000

    Comment out the warnings about mktemp().  These are too annoying, and
    often unavoidable.

diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index 97f125250b..0393ba5d30 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -324,9 +324,9 @@ def mktemp(suffix="", prefix=template, dir=None):
     the punch.
     """

-    from warnings import warn as _warn
-    _warn("mktemp is a potential security risk to your program",
-          RuntimeWarning, stacklevel=2)
+##    from warnings import warn as _warn
+##    _warn("mktemp is a potential security risk to your program",
+##          RuntimeWarning, stacklevel=2)

     if dir is None:
         dir = gettempdir()
History
Date User Action Args
2019-03-19 00:50:07pablogsalsetrecipients: + pablogsal, brett.cannon, John Hagen
2019-03-19 00:50:07pablogsalsetmessageid: <1552956607.3.0.737740706141.issue36309@roundup.psfhosted.org>
2019-03-19 00:50:07pablogsallinkissue36309 messages
2019-03-19 00:50:07pablogsalcreate