[Python-checkins] CVS: python/dist/src/Modules parsermodule.c,2.63,2.64
Fred L. Drake
fdrake@users.sourceforge.net
2001年7月19日 13:17:17 -0700
Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv29706/Modules
Modified Files:
parsermodule.c
Log Message:
Elaborate a comment.
Index: parsermodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v
retrieving revision 2.63
retrieving revision 2.64
diff -C2 -r2.63 -r2.64
*** parsermodule.c 2001年07月17日 19:32:05 2.63
--- parsermodule.c 2001年07月19日 20:17:15 2.64
***************
*** 2856,2860 ****
PyString_FromString(parser_version_string));
! /* register to support pickling */
module = PyImport_ImportModule("copy_reg");
if (module != NULL) {
--- 2856,2863 ----
PyString_FromString(parser_version_string));
! /* Register to support pickling.
! * If this fails, the import of this module will fail because an
! * exception will be raised here; should we clear the exception?
! */
module = PyImport_ImportModule("copy_reg");
if (module != NULL) {