From 46fc337395753e5b927f6dcccc549c54550b197e Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Sun, 12 Aug 2007 11:44:53 +0000 Subject: PyErr_Warn is deprecated in 2.5 - goes away for 3.0 --- Python/errors.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'Python/errors.c') diff --git a/Python/errors.c b/Python/errors.c index 3770522735..62e63ab91e 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -670,17 +670,6 @@ PyErr_WarnEx(PyObject *category, const char *message, Py_ssize_t stack_level) } } -/* PyErr_Warn is only for backwards compatability and will be removed. - Use PyErr_WarnEx instead. */ - -#undef PyErr_Warn - -PyAPI_FUNC(int) -PyErr_Warn(PyObject *category, char *message) -{ - return PyErr_WarnEx(category, message, 1); -} - /* Warning with explicit origin */ int PyErr_WarnExplicit(PyObject *category, const char *message, -- cgit v1.2.1