diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-06-30 22:27:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-06-30 22:27:25 (GMT) |
commit | 98d23f2e065713ccfbc07d9a0b65f737a212bfb5 (patch) | |
tree | 6547d1a3979e9451599a4a176897c2bca5975fe4 /Lib/tempfile.py | |
parent | 835a6c8467a5c2d63a23b392d21c79c5f5a9e300 (diff) | |
download | cpython-98d23f2e065713ccfbc07d9a0b65f737a212bfb5.zip cpython-98d23f2e065713ccfbc07d9a0b65f737a212bfb5.tar.gz cpython-98d23f2e065713ccfbc07d9a0b65f737a212bfb5.tar.bz2 |
Merged revisions 73710 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73710 | benjamin.peterson | 2009-06-30 17:14:33 -0500 (Tue, 30 Jun 2009) | 1 line
provide a dummy __exit__ on windows
........
Diffstat (limited to 'Lib/tempfile.py')
-rw-r--r-- | Lib/tempfile.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py index 74e3cb2..8cdefaa 100644 --- a/Lib/tempfile.py +++ b/Lib/tempfile.py @@ -408,6 +408,9 @@ class _TemporaryFileWrapper: result = self.file.__exit__(exc, value, tb) self.close() return result + else: + def __exit__(self, exc, value, tb): + pass def NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None, |