[Python-checkins] python/dist/src/Misc NEWS,1.727,1.728

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 16 Apr 2003 14:13:25 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv1004/Misc

Modified Files:
	NEWS 
Log Message:
- The repr() of a weakref object now shows the __name__ attribute of
  the referenced object, if it has one.

Also use %p to format pointers consistently, and use <weakproxy ...>
in proxy_repr(), to match the type name.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.727
retrieving revision 1.728
diff -C2 -d -r1.727 -r1.728
*** NEWS	16 Apr 2003 19:42:49 -0000	1.727
--- NEWS	16 Apr 2003 21:13:21 -0000	1.728
***************
*** 13,16 ****
--- 13,19 ----
  -----------------
  
+ - The repr() of a weakref object now shows the __name__ attribute of
+   the referenced object, if it has one.
+ 
  - super() no longer ignores data descriptors, except __class__.  See
    the thread started at