Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve exception types raised and caught #17

Closed
2 tasks done
Jacob-Stevens-Haas opened this issue Dec 1, 2023 · 0 comments · Fixed by #18
Closed
2 tasks done

Improve exception types raised and caught #17

Jacob-Stevens-Haas opened this issue Dec 1, 2023 · 0 comments · Fixed by #18
Labels
enhancement New feature or request

Comments

@Jacob-Stevens-Haas
Copy link
Collaborator

Jacob-Stevens-Haas commented Dec 1, 2023

See #3. There are 19 cases of except Exception and 11 of `raise Exception. Python's philosophy is to raise the most specific error possible so that exception handlers and humans have the most information possible. The way to achieve this is via:

  • narrowing all of the raise statements
  • carefully narrow the except statements, in case any are untested.

In addition, a lot of code uses the antipattern:

try:
     do something
except Exception:
    raise

which does the same thing as

do something

Out of scope for this issue but also germane is the use of internal status-passing with integer codes, rather than raising an exception.

Ref:
https://docs.python.org/3/library/exceptions.html

Jacob-Stevens-Haas added a commit that referenced this issue Dec 1, 2023
Fixes #17

Also
* modify ONC to accept Path objects for outPath
* Modify tests/readme.md for pytest tests

Note: Unclear whether some error codes from server should be 127/129.
(e.g. test_raw_bad_filters/test_bad_filters).  Other services do not list their
error codes on the ONC wiki.
@Jacob-Stevens-Haas Jacob-Stevens-Haas linked a pull request Dec 1, 2023 that will close this issue
@kan-fu kan-fu added the enhancement New feature or request label Dec 2, 2023
Jacob-Stevens-Haas added a commit that referenced this issue Dec 5, 2023
Fixes #17

Also
* modify ONC to accept Path objects for outPath
* Modify tests/readme.md for pytest tests

Note: Unclear whether some error codes from server should be 127/129.
(e.g. test_raw_bad_filters/test_bad_filters).  Other services do not list their
error codes on the ONC wiki.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Development

Successfully merging a pull request may close this issue.

2 participants