[Python-checkins] CVS: python/dist/src/Include descrobject.h,1.1.2.2,1.1.2.3

Guido van Rossum gvanrossum@users.sourceforge.net
Fri, 27 Apr 2001 14:38:40 -0700


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

Modified Files:
      Tag: descr-branch
	descrobject.h 
Log Message:
Make type(obj).__dict__ a read-only proxy.

Index: descrobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/Attic/descrobject.h,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -r1.1.2.2 -r1.1.2.3
*** descrobject.h	2001/04/27 18:04:50	1.1.2.2
--- descrobject.h	2001/04/27 21:38:38	1.1.2.3
***************
*** 24,25 ****
--- 24,27 ----
  
  extern DL_IMPORT(int) PyType_InitDict(PyTypeObject *);
+ 
+ extern DL_IMPORT(PyObject *) PyDictProxy_New(PyObject *);