[Python-checkins] CVS: python/nondist/peps pep-0280.txt,1.12,1.13
Guido van Rossum
gvanrossum@users.sourceforge.net
Mon, 11 Feb 2002 21:04:32 -0800
Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv28154
Modified Files:
pep-0280.txt
Log Message:
Add missing PUSH(x) statements to the C code.
Index: pep-0280.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0280.txt,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** pep-0280.txt 12 Feb 2002 00:01:35 -0000 1.12
--- pep-0280.txt 12 Feb 2002 05:04:30 -0000 1.13
***************
*** 441,444 ****
--- 441,445 ----
}
Py_INCREF(x);
+ PUSH(x);
continue;
***************
*** 450,453 ****
--- 451,455 ----
if (x != NULL) {
Py_INCREF(x);
+ PUSH(x);
continue;
}
***************
*** 468,471 ****
--- 470,474 ----
if (x != NULL) {
Py_INCREF(x);
+ PUSH(x);
continue;
}