mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Python 2.0 is not supposed to use string exceptions in the standard library
& extensions, so create exceptions in extension modules using the PyErr_NewException() API.
This commit is contained in:
parent
28067821e2
commit
589c35bcc7
3 changed files with 3 additions and 3 deletions
|
@ -2329,7 +2329,7 @@ init_curses()
|
|||
ModDict = d; /* For PyCurses_InitScr */
|
||||
|
||||
/* For exception curses.error */
|
||||
PyCursesError = PyString_FromString("_curses.error");
|
||||
PyCursesError = PyErr_NewException("_curses.error", NULL, NULL);
|
||||
PyDict_SetItemString(d, "error", PyCursesError);
|
||||
|
||||
/* Make the version available */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue