summaryrefslogtreecommitdiffstats
path: root/Doc/library/tempfile.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
commit55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch)
treea0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/tempfile.rst
parent1617457cff847fed9fadb01f1acf6ba8bb621726 (diff)
downloadcpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/tempfile.rst')
-rw-r--r--Doc/library/tempfile.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst
index c4ddf8b..74c032f 100644
--- a/Doc/library/tempfile.rst
+++ b/Doc/library/tempfile.rst
@@ -60,11 +60,6 @@ The module defines the following user-callable functions:
across platforms (it can be so used on Unix; it cannot on Windows NT or later).
If *delete* is true (the default), the file is deleted as soon as it is closed.
- .. versionadded:: 2.3
-
- .. versionadded:: 2.6
- The *delete* parameter.
-
.. function:: SpooledTemporaryFile([max_size=0, [mode='w+b'[, bufsize=-1[, suffix[, prefix[, dir]]]]]])
@@ -76,8 +71,6 @@ The module defines the following user-callable functions:
The resulting file has one additional method, :func:`rollover`, which causes the
file to roll over to an on-disk file regardless of its size.
- .. versionadded:: 2.6
-
.. function:: mkstemp([suffix[, prefix[, dir[, text]]]])
@@ -114,8 +107,6 @@ The module defines the following user-callable functions:
(as would be returned by :func:`os.open`) and the absolute pathname of that
file, in that order.
- .. versionadded:: 2.3
-
.. function:: mkdtemp([suffix[, prefix[, dir]]])
@@ -130,8 +121,6 @@ The module defines the following user-callable functions:
:func:`mkdtemp` returns the absolute pathname of the new directory.
- .. versionadded:: 2.3
-
.. function:: mktemp([suffix[, prefix[, dir]]])
@@ -209,5 +198,3 @@ function arguments, instead.
contain the directory component. Using this function is preferred over reading
the *template* variable directly.
- .. versionadded:: 1.5.2
-