summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-10 22:33:32 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-10 22:33:32 (GMT)
commit99cc97109efd2957c26fe71cbc81f427becb7188 (patch)
tree92bc81d5b455efa93b7b4704a240afa72ee730a7 /Include
parentd822518fa87b79a6775bafe67fe124d93ac39d58 (diff)
downloadcpython-99cc97109efd2957c26fe71cbc81f427becb7188.zip
cpython-99cc97109efd2957c26fe71cbc81f427becb7188.tar.gz
cpython-99cc97109efd2957c26fe71cbc81f427becb7188.tar.bz2
Marc-Andre Lemburg: add PyExc_UnicodeError
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 34ac78c..e77f7de 100644
--- a/Include/pyerrors.h
+++ b/Include/pyerrors.h
@@ -79,6 +79,7 @@ extern DL_IMPORT(PyObject *) PyExc_SystemError;
extern DL_IMPORT(PyObject *) PyExc_SystemExit;
extern DL_IMPORT(PyObject *) PyExc_TypeError;
extern DL_IMPORT(PyObject *) PyExc_UnboundLocalError;
+extern DL_IMPORT(PyObject *) PyExc_UnicodeError;
extern DL_IMPORT(PyObject *) PyExc_ValueError;
extern DL_IMPORT(PyObject *) PyExc_ZeroDivisionError;
#ifdef MS_WINDOWS