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.

ignore_except_pass_by_default.py 120B

123456
  1. """#5575: by default no W0704 warning on bare pass in except"""
  2. try:
  3. __exception__ = 0
  4. except ValueError:
  5. pass