diff options
author | Brett Cannon <brett@python.org> | 2013-08-23 15:15:48 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-08-23 15:15:48 -0400 |
commit | f79126f373a9d5c9b584a8db736fe490fcbfa77a (patch) | |
tree | 18a06f40da038953f80ccb86658f8d361924b1b2 /Lib/cgi.py | |
parent | Stop using assertEquals. (diff) | |
download | cpython-f79126f373a9d5c9b584a8db736fe490fcbfa77a.tar.gz cpython-f79126f373a9d5c9b584a8db736fe490fcbfa77a.tar.bz2 cpython-f79126f373a9d5c9b584a8db736fe490fcbfa77a.zip |
Issue #18394: Explicitly close the file object cgi.FieldStorage
caches.
Eliminates the ResoureWarning raised during testing.
Patch also independently written by Vajrasky Kok.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py index 4de82ea6df9..b6fd4074546 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -552,6 +552,12 @@ class FieldStorage: else: self.read_single() + def __del__(self): + try: + self.file.close() + except AttributeError: + pass + def __repr__(self): """Return a printable representation.""" return "FieldStorage(%r, %r, %r)" % ( |