From: Guido van Rossum <guido@python.org>
Date: Fri, 10 Mar 2000 22:33:32 +0000 (+0000)
Subject: Marc-Andre Lemburg: add PyExc_UnicodeError
X-Git-Tag: v1.6a1~243
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99cc97109efd2957c26fe71cbc81f427becb7188;p=python

Marc-Andre Lemburg: add PyExc_UnicodeError
---

diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index 34ac78c754..e77f7def01 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