[Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.235,2.236

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 06 Sep 2001 14:55:48 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv13689

Modified Files:
	bltinmodule.c 
Log Message:
Rename 'getset' to 'property'.


Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.235
retrieving revision 2.236
diff -C2 -d -r2.235 -r2.236
*** bltinmodule.c	2001/09/05 13:37:47	2.235
--- bltinmodule.c	2001/09/06 21:55:46	2.236
***************
*** 1870,1875 ****
  				 (PyObject *) &PyFloat_Type) < 0)
  		return NULL;
! 	if (PyDict_SetItemString(dict, "getset",
! 				 (PyObject *) &PyGetSet_Type) < 0)
  		return NULL;
  	if (PyDict_SetItemString(dict, "int", (PyObject *) &PyInt_Type) < 0)
--- 1870,1875 ----
  				 (PyObject *) &PyFloat_Type) < 0)
  		return NULL;
! 	if (PyDict_SetItemString(dict, "property",
! 				 (PyObject *) &PyProperty_Type) < 0)
  		return NULL;
  	if (PyDict_SetItemString(dict, "int", (PyObject *) &PyInt_Type) < 0)