initregex(): Check return value of PyErr_Warn() and propagate the exception

(if any.)
This commit is contained in:
Thomas Wouters 2001-07-09 10:45:31 +00:00
parent 4e566ab904
commit 4ccf119053
1 changed files with 4 additions and 2 deletions

View File

@ -660,8 +660,10 @@ initregex(void)
m = Py_InitModule("regex", regex_global_methods);
d = PyModule_GetDict(m);
PyErr_Warn(PyExc_DeprecationWarning,
"the regex module is deprecated; please use the re module");
if (PyErr_Warn(PyExc_DeprecationWarning,
"the regex module is deprecated; "
"please use the re module") < 0)
return NULL;
/* Initialize regex.error exception */
v = RegexError = PyErr_NewException("regex.error", NULL, NULL);