weakref.ReferenceError becomes a built-in exception now that weak ref objects

are moving into the core; with these changes, it will be possible for the
exception to be raised without the weakref module ever being imported.
This commit is contained in:
Fred Drake 2001-10-05 21:50:08 +00:00
parent 39c785108f
commit bb9fa21cfe
2 changed files with 7 additions and 0 deletions

View file

@ -48,6 +48,7 @@ extern DL_IMPORT(PyObject *) PyExc_NotImplementedError;
extern DL_IMPORT(PyObject *) PyExc_SyntaxError;
extern DL_IMPORT(PyObject *) PyExc_IndentationError;
extern DL_IMPORT(PyObject *) PyExc_TabError;
extern DL_IMPORT(PyObject *) PyExc_ReferenceError;
extern DL_IMPORT(PyObject *) PyExc_SystemError;
extern DL_IMPORT(PyObject *) PyExc_SystemExit;
extern DL_IMPORT(PyObject *) PyExc_TypeError;