diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-05 22:06:45 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-05 22:06:45 (GMT) |
commit | 335244c710c57699bd5d243915a3403277489047 (patch) | |
tree | 4359e2c6cf8fcfa5ee8357c852d7ac7d704e9cc7 | |
parent | bf88b68f384c7b01281d43589cd1aecee99182be (diff) | |
download | cpython-335244c710c57699bd5d243915a3403277489047.zip cpython-335244c710c57699bd5d243915a3403277489047.tar.gz cpython-335244c710c57699bd5d243915a3403277489047.tar.bz2 |
Remove bogus declaration.
-rw-r--r-- | Include/weakrefobject.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/weakrefobject.h b/Include/weakrefobject.h index 3886ea5..6ead22b 100644 --- a/Include/weakrefobject.h +++ b/Include/weakrefobject.h @@ -22,8 +22,6 @@ extern DL_IMPORT(PyTypeObject) _PyWeakref_RefType; extern DL_IMPORT(PyTypeObject) _PyWeakref_ProxyType; extern DL_IMPORT(PyTypeObject) _PyWeakref_CallableProxyType; -extern DL_IMPORT(PyObject *) PyErr_ReferenceError; - #define PyWeakref_CheckRef(op) \ ((op)->ob_type == &_PyWeakref_RefType) #define PyWeakref_CheckProxy(op) \ |