caches.
Eliminates the ResoureWarning raised during testing.
Patch also independently written by Vajrasky Kok.
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)" % (
Library
-------
+- Issue #18394: Close cgi.FieldStorage's optional file.
+
- Issue #17702: On error, os.environb now removes suppress the except context
when raising a new KeyError with the original key.