-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
Code StyleCode style, linting, code_checksCode style, linting, code_checksDocsError ReportingIncorrect or improved errors from pandasIncorrect or improved errors from pandas
Milestone
Description
Currently some NotImplementedErrors don't have a description (most do!) .
raise NotImplemented
# should be
raise NotImplemented("short description of thing which isn't implemented")
I think this would be pretty useful, and makes it less confusing for users, and at least they would be pointed in the right direction to request said feature (and know which bit of specifically is NotImplemented)...
You can find them all with grep (probably more usefully the same regex in your text editor):
grep "NotImplementedError$" pandas/**/*.py -r -n
Metadata
Metadata
Assignees
Labels
Code StyleCode style, linting, code_checksCode style, linting, code_checksDocsError ReportingIncorrect or improved errors from pandasIncorrect or improved errors from pandas