[Python-checkins] python/dist/src/Objects typeobject.c, 2.241.6.8,
2.241.6.9
tim_one at users.sourceforge.net
tim_one at users.sourceforge.net
Tue May 11 12:35:08 EDT 2004
Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3804/Objects
Modified Files:
Tag: release23-maint
typeobject.c
Log Message:
super_getattro(): Repaired compiler warning about mixed-type comparison.
Index: typeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v
retrieving revision 2.241.6.8
retrieving revision 2.241.6.9
diff -C2 -d -r2.241.6.8 -r2.241.6.9
*** typeobject.c 25 Mar 2004 02:36:29 -0000 2.241.6.8
--- typeobject.c 11 May 2004 16:35:05 -0000 2.241.6.9
***************
*** 5502,5506 ****
(See SF ID #743627)
*/
! (su->obj==su->obj_type
? (PyObject *)NULL
: su->obj),
--- 5502,5507 ----
(See SF ID #743627)
*/
! (su->obj ==
! (PyObject *)su->obj_type
? (PyObject *)NULL
: su->obj),
More information about the Python-checkins
mailing list