[Python-checkins] python/dist/src/Misc NEWS,1.901,1.902
gvanrossum at users.sourceforge.net
gvanrossum at users.sourceforge.net
Sat Nov 29 18:52:14 EST 2003
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv28240/Misc
Modified Files:
NEWS
Log Message:
- Removed FutureWarnings related to hex/oct literals and conversions
and left shifts. (Thanks to Kalle Svensson for SF patch 849227.)
This addresses most of the remaining semantic changes promised by
PEP 237, except for repr() of a long, which still shows the trailing
'L'. The PEP appears to promise warnings for operations that
changed semantics compared to Python 2.3, but this is not
implemented; we've suffered through enough warnings related to
hex/oct literals and I think it's best to be silent now.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.901
retrieving revision 1.902
diff -C2 -d -r1.901 -r1.902
*** NEWS 28 Nov 2003 19:42:56 -0000 1.901
--- NEWS 29 Nov 2003 23:52:11 -0000 1.902
***************
*** 13,16 ****
--- 13,25 ----
-----------------
+ - Removed FutureWarnings related to hex/oct literals and conversions
+ and left shifts. (Thanks to Kalle Svensson for SF patch 849227.)
+ This addresses most of the remaining semantic changes promised by
+ PEP 237, except for repr() of a long, which still shows the trailing
+ 'L'. The PEP appears to promise warnings for operations that
+ changed semantics compared to Python 2.3, but this is not
+ implemented; we've suffered through enough warnings related to
+ hex/oct literals and I think it's best to be silent now.
+
- For str and unicode objects, the ljust(), center(), and rjust()
methods now accept an optional argument specifying a fill
More information about the Python-checkins
mailing list