summaryrefslogtreecommitdiffstats
path: root/Doc/library/tempfile.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-07-04 18:31:53 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-07-04 18:31:53 (GMT)
commit276a58b8218ba2e6c13114ce3942d25328d0e8ee (patch)
treee2c2c1af548b31accfbcc69ba7db8a9c9c80e661 /Doc/library/tempfile.rst
parent1945f93888f6acadd0bde6541f39d7616f9a5392 (diff)
parenta6bac95a3c6eb926d3eded04e4b04a1d552053d1 (diff)
downloadcpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.zip
cpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.tar.gz
cpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.tar.bz2
Merge from 3.2 . Replace the term members with correct and appropriate terminology. Initial patch by Adam Woodbeck.
Diffstat (limited to 'Doc/library/tempfile.rst')
-rw-r--r--Doc/library/tempfile.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst
index af72df4..dfeb250 100644
--- a/Doc/library/tempfile.rst
+++ b/Doc/library/tempfile.rst
@@ -60,7 +60,7 @@ The module defines the following user-callable items:
This function operates exactly as :func:`TemporaryFile` does, except that
the file is guaranteed to have a visible name in the file system (on
Unix, the directory entry is not unlinked). That name can be retrieved
- from the :attr:`name` member of the file object. Whether the name can be
+ from the :attr:`name` attribute of the file object. Whether the name can be
used to open the file a second time, while the named temporary file is
still open, varies 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
@@ -96,7 +96,7 @@ The module defines the following user-callable items:
of the temporary directory object), the newly created temporary directory
and all its contents are removed from the filesystem.
- The directory name can be retrieved from the :attr:`name` member
+ The directory name can be retrieved from the :attr:`name` attribute
of the returned object.
The directory can be explicitly cleaned up by calling the