10000 API: expose pandas.errors by jreback · Pull Request #15541 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

API: expose pandas.errors #15541

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

Closed
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
more docs for exceptions
  • Loading branch information
jreback committed Apr 3, 2017
commit 3dc4b9a455c7da621fa6c2850362a26ee4fa8b50
6 changes: 4 additions & 2 deletions pandas/errors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ class PerformanceWarning(Warning):
"""

class UnsupportedFunctionCall(ValueError):
pass

"""
If attempting to call a numpy function on a pandas
object. For example using ``np.cumsum(groupby_object)``.
"""

class UnsortedIndexError(KeyError):
"""
Expand Down
0