You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
dosomethingexceptException:
raise
which does the same thing as
dosomething
Out of scope for this issue but also germane is the use of internal status-passing with integer codes, rather than raising an exception.
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.
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.
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:raise
statementsexcept
statements, in case any are untested.In addition, a lot of code uses the antipattern:
which does the same thing as
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
The text was updated successfully, but these errors were encountered: