[Python-checkins] CVS: python/dist/src/Misc NEWS,1.227,1.228
Tim Peters
tim_one@users.sourceforge.net
Tue, 04 Sep 2001 15:08:58 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv11322/python/Misc
Modified Files:
NEWS
Log Message:
At Guido's suggestion, here's a new C API function, PyObject_Dir(), like
__builtin__.dir(). Moved the guts from bltinmodule.c to object.c.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.227
retrieving revision 1.228
diff -C2 -d -r1.227 -r1.228
*** NEWS 2001/09/04 05:14:19 1.227
--- NEWS 2001/09/04 22:08:56 1.228
***************
*** 97,101 ****
Build
! API
- Note that PyLong_AsDouble can fail! This has always been true, but no
--- 97,103 ----
Build
! C API
!
! - New function PyObject_Dir(obj), like Python __builtin__.dir(obj).
- Note that PyLong_AsDouble can fail! This has always been true, but no