diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-08-25 02:14:08 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-08-25 02:14:08 (GMT) |
commit | c8854434790d3a281f0ea5a4714e5c01414413b0 (patch) | |
tree | f6edfa8738087c52d1fb4e077bba738f2f42cd49 /Include | |
parent | 1fa040ba73db700debd9f5079fa2083a0937f8b6 (diff) | |
download | cpython-c8854434790d3a281f0ea5a4714e5c01414413b0.zip cpython-c8854434790d3a281f0ea5a4714e5c01414413b0.tar.gz cpython-c8854434790d3a281f0ea5a4714e5c01414413b0.tar.bz2 |
Stop producing or using OverflowWarning. PEP 237 thought this would
happen in 2.3, but nobody noticed it still was getting generated (the
warning was disabled by default). OverflowWarning and
PyExc_OverflowWarning should be removed for 2.5, and left notes all over
saying so.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyerrors.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 1715e97..f433cc0 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -74,6 +74,7 @@ PyAPI_DATA(PyObject *) PyExc_UserWarning; PyAPI_DATA(PyObject *) PyExc_DeprecationWarning; PyAPI_DATA(PyObject *) PyExc_PendingDeprecationWarning; PyAPI_DATA(PyObject *) PyExc_SyntaxWarning; +/* PyExc_OverflowWarning will go away for Python 2.5 */ PyAPI_DATA(PyObject *) PyExc_OverflowWarning; PyAPI_DATA(PyObject *) PyExc_RuntimeWarning; PyAPI_DATA(PyObject *) PyExc_FutureWarning; |