summaryrefslogtreecommitdiff
path: root/Modules/parsermodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r--Modules/parsermodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index d1f11548dc..6c885dfbe5 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -2632,7 +2632,7 @@ initparser()
module = Py_InitModule("parser", parser_functions);
dict = PyModule_GetDict(module);
- parser_error = PyString_FromString("parser.ParserError");
+ parser_error = PyErr_NewException("parser.ParserError", NULL, NULL);
if ((parser_error == 0)
|| (PyDict_SetItemString(dict, "ParserError", parser_error) != 0)) {