Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

regression_1326_crash_uninferable.py 202B

123456789101112
  1. # pylint: disable=missing-docstring
  2. import socket
  3. RETRYABLE_EXCEPTIONS = (socket.error,)
  4. def exception_handler():
  5. try:
  6. yield 1
  7. except RETRYABLE_EXCEPTIONS + tuple():
  8. yield 2