[Python-checkins] python/dist/src/Objects object.c,2.221,2.222

mwh at users.sourceforge.net mwh at users.sourceforge.net
Tue Sep 14 19:09:49 CEST 2004


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

Modified Files:
	object.c 
Log Message:
Move a comment back to its rightful location.


Index: object.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v
retrieving revision 2.221
retrieving revision 2.222
diff -u -d -r2.221 -r2.222
--- object.c	7 Aug 2004 04:55:30 -0000	2.221
+++ object.c	14 Sep 2004 17:09:47 -0000	2.222
@@ -1176,8 +1176,6 @@
 	return (PyObject **) ((char *)obj + dictoffset);
 }
 
-/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
-
 PyObject *
 PyObject_SelfIter(PyObject *obj)
 {
@@ -1185,6 +1183,8 @@
 	return obj;
 }
 
+/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
+
 PyObject *
 PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
 {



More information about the Python-checkins mailing list