summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-08-14 15:51:29 (GMT)
committerBarry Warsaw <barry@python.org>2002-08-14 15:51:29 (GMT)
commit9f00739551e0ebef1c337f5640703f63abc4657e (patch)
treead20bde1545c7b7f0c23939c013712f73542a836 /Include
parent31d2df5b60a20e43e3a8e23bc1cb8cebc41c96e4 (diff)
downloadcpython-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')
-rw-r--r--Include/pyerrors.h1
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 */