[Python-checkins] r57981 - peps/trunk/pep-3121.txt
brett.cannon
python-checkins at python.org
Wed Sep 5 02:49:19 CEST 2007
Author: brett.cannon
Date: Wed Sep 5 02:49:19 2007
New Revision: 57981
Modified:
peps/trunk/pep-3121.txt
Log:
Fix missing quotation mark.
Modified: peps/trunk/pep-3121.txt
==============================================================================
--- peps/trunk/pep-3121.txt (original)
+++ peps/trunk/pep-3121.txt Wed Sep 5 02:49:19 2007
@@ -169,7 +169,7 @@
{
PyObject *res = PyModule_New("xx", &xxmodule);
if (!res) return NULL;
- xxstate(res)->ErrorObject = PyErr_NewException("xx.error, NULL, NULL);
+ xxstate(res)->ErrorObject = PyErr_NewException("xx.error", NULL, NULL);
if (!xxstate(res)->ErrorObject) {
Py_DECREF(res);
return NULL;
More information about the Python-checkins
mailing list