This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author srittau
Recipients srittau
Date 2016-10-06.12:00:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475755223.43.0.818852294498.issue28375@psf.upfronthosting.co.za>
In-reply-to
Content
I am using cgi.py in WSGI applications, using Apache and mod_wsgi. Unfortunately cgi.py keeps spamming the error log with messages like the following:

Exception ignored in: <bound method FieldStorage.__del__ of FieldStorage(None, None, [])>
Traceback (most recent call last):
  File "/usr/lib/python3.5/cgi.py", line 566, in __del__
NameError: name 'AttributeError' is not defined

This is mostly likely due to the warning about __del__ in <https://docs.python.org/3/reference/datamodel.html>, i.e. AttributeError will already have been cleaned at the time FieldStorage is collected. One workaround that seems to work for me is to cache AttributeError in the constructor of FieldStorage in self and use that attribute during __del__.
History
Date User Action Args
2016-10-06 12:00:24srittausetrecipients: + srittau
2016-10-06 12:00:23srittausetmessageid: <1475755223.43.0.818852294498.issue28375@psf.upfronthosting.co.za>
2016-10-06 12:00:23srittaulinkissue28375 messages
2016-10-06 12:00:22srittaucreate