[issue34086] logging.Handler.handleError regressed in python3

Oren report at bugs.python.org
Wed Jul 11 13:18:05 EDT 2018


Oren <oren.leaffer at gmail.com> added the comment:

The code that was causing this problem looked something like:

--
def emit(self, record):
  ...
  response = requests.post(...)
  if not response.ok:
     self.handleError(record)
  ...
--

In this case, something does apparently go wrong, but it doesn't actually involve an exception.

I assume that I'm not the only person in the world dealing with a code base where handleError was misused like this.

Here's some evidence that this is true: https://www.programcreek.com/python/example/619/logging.Handler (search for handleError in the page)

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue34086>
_______________________________________


More information about the Python-bugs-list mailing list