[Python-checkins] CVS: python/dist/src/Objects fileobject.c,2.115,2.116

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 06 Aug 2001 11:51:40 -0700


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

Modified Files:
	fileobject.c 
Log Message:
Remove spurious "closed" attribute definition from the memberlist
table.  (reported as an aside in SF #446049).


Index: fileobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/fileobject.c,v
retrieving revision 2.115
retrieving revision 2.116
diff -C2 -d -r2.115 -r2.116
*** fileobject.c	2001/08/02 04:15:00	2.115
--- fileobject.c	2001/08/06 18:51:38	2.116
***************
*** 1269,1273 ****
  	{"name",	T_OBJECT,	OFF(f_name),	RO},
  	/* getattr(f, "closed") is implemented without this table */
- 	{"closed",	T_INT,		0,		RO},
  	{NULL}	/* Sentinel */
  };
--- 1269,1272 ----