[Python-checkins] r51570 - python/branches/p3yk-noslice/Include/object.h

thomas.wouters python-checkins at python.org
Thu Aug 24 22:36:49 CEST 2006


Author: thomas.wouters
Date: Thu Aug 24 22:36:48 2006
New Revision: 51570

Modified:
   python/branches/p3yk-noslice/Include/object.h
Log:

Rename the sq_slice and sq_ass_slice PySequenceMethod members.



Modified: python/branches/p3yk-noslice/Include/object.h
==============================================================================
--- python/branches/p3yk-noslice/Include/object.h	(original)
+++ python/branches/p3yk-noslice/Include/object.h	Thu Aug 24 22:36:48 2006
@@ -198,9 +198,9 @@
 	binaryfunc sq_concat;
 	ssizeargfunc sq_repeat;
 	ssizeargfunc sq_item;
-	ssizessizeargfunc sq_slice;
+	void *was_sq_slice;
 	ssizeobjargproc sq_ass_item;
-	ssizessizeobjargproc sq_ass_slice;
+	void *was_sq_ass_slice;
 	objobjproc sq_contains;
 
 	binaryfunc sq_inplace_concat;


More information about the Python-checkins mailing list