diff options
author | Barry Warsaw <barry@python.org> | 2002-08-14 15:51:29 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-08-14 15:51:29 (GMT) |
commit | 9f00739551e0ebef1c337f5640703f63abc4657e (patch) | |
tree | ad20bde1545c7b7f0c23939c013712f73542a836 /Include/pyerrors.h | |
parent | 31d2df5b60a20e43e3a8e23bc1cb8cebc41c96e4 (diff) | |
download | cpython-9f00739551e0ebef1c337f5640703f63abc4657e.zip cpython-9f00739551e0ebef1c337f5640703f63abc4657e.tar.gz cpython-9f00739551e0ebef1c337f5640703f63abc4657e.tar.bz2 |
Added a FutureWarning for constructs that will change semantically in
the future. Changed PEP 237 hex constant warnings from
DeprecationWarning to FutureWarning. Updated the documentation.
Diffstat (limited to 'Include/pyerrors.h')
-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 a3d9c5d..b783b7b 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -70,6 +70,7 @@ PyAPI_DATA(PyObject *) PyExc_PendingDeprecationWarning; PyAPI_DATA(PyObject *) PyExc_SyntaxWarning; PyAPI_DATA(PyObject *) PyExc_OverflowWarning; PyAPI_DATA(PyObject *) PyExc_RuntimeWarning; +PyAPI_DATA(PyObject *) PyExc_FutureWarning; /* Convenience functions */ |