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
foo, a deprecated callable, which raises _SomeKindOfException
where _SomeKindOfException is raised only by foo, and perhaps isn't itself public.
Once foo is removed, it is potentially easy to forget to remove _SomeKindOfException.
It may be nice to provide a way to ensure _SomeKindOfException is marked as related to foo inside of foo's deprecation. This may be so that e.g. #1 or #14 are able to raise errors if foo gets removed but _SomeKindOfException remains.
The text was updated successfully, but these errors were encountered:
Occasionally, one has a situation such as:
foo
, a deprecated callable, which raises_SomeKindOfException
where
_SomeKindOfException
is raised only byfoo
, and perhaps isn't itself public.Once
foo
is removed, it is potentially easy to forget to remove_SomeKindOfException
.It may be nice to provide a way to ensure
_SomeKindOfException
is marked as related tofoo
inside offoo
's deprecation. This may be so that e.g. #1 or #14 are able to raise errors iffoo
gets removed but_SomeKindOfException
remains.The text was updated successfully, but these errors were encountered: