[Python-checkins] python/dist/src/Objects abstract.c, 2.119.12.1, 2.119.12.2

arigo at users.sourceforge.net arigo at users.sourceforge.net
Mon Mar 22 15:39:51 EST 2004


Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19156

Modified Files:
      Tag: release23-maint
	abstract.c 
Log Message:
Backported fix of revision 2.217.


Index: abstract.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/abstract.c,v
retrieving revision 2.119.12.1
retrieving revision 2.119.12.2
diff -C2 -d -r2.119.12.1 -r2.119.12.2
*** abstract.c	20 Mar 2004 21:54:34 -0000	2.119.12.1
--- abstract.c	22 Mar 2004 20:39:42 -0000	2.119.12.2
***************
*** 2079,2083 ****
                      PyErr_SetString(PyExc_RuntimeError,
                                      "Recursion depth exceeded");
!                     return NULL;
                  }
  
--- 2079,2083 ----
                      PyErr_SetString(PyExc_RuntimeError,
                                      "Recursion depth exceeded");
!                     return -1;
                  }
  
***************
*** 2139,2143 ****
                              PyErr_SetString(PyExc_RuntimeError,
                                              "Recursion depth exceeded");
!                             return NULL;
                          }
                          
--- 2139,2143 ----
                              PyErr_SetString(PyExc_RuntimeError,
                                              "Recursion depth exceeded");
!                             return -1;
                          }
                          




More information about the Python-checkins mailing list