From 36ab1ef8ee1006596937198e8f149e09ae8a6139 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 3 Jan 2009 21:17:04 +0000 Subject: Merged revisions 68219 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68219 | georg.brandl | 2009-01-03 21:47:01 +0100 (Sat, 03 Jan 2009) | 2 lines Fix uses of the default role. ........ --- Doc/library/tempfile.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Doc/library/tempfile.rst') diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst index 11ae9f2ff5..36c875341c 100644 --- a/Doc/library/tempfile.rst +++ b/Doc/library/tempfile.rst @@ -149,11 +149,11 @@ The module defines the following user-callable functions: .. warning:: - Use of this function may introduce a security hole in your program. - By the time you get around to doing anything with the file name it - returns, someone else may have beaten you to the punch. - :func:`mktemp` usage can be replaced easily with - :func:`NamedTemporaryFile`, passing it the `delete=False` parameter:: + Use of this function may introduce a security hole in your program. By + the time you get around to doing anything with the file name it returns, + someone else may have beaten you to the punch. :func:`mktemp` usage can + be replaced easily with :func:`NamedTemporaryFile`, passing it the + ``delete=False`` parameter:: >>> f = NamedTemporaryFile(delete=False) >>> f -- cgit v1.2.1