[Python-checkins] python/dist/src/Lib decimal.py,1.22,1.23

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Fri Aug 20 00:39:58 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7575

Modified Files:
	decimal.py 
Log Message:
Establish policies with respect to 2.3 compatibilty and treated spec
updates as bugfixes.



Index: decimal.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/decimal.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** decimal.py	17 Aug 2004 06:39:37 -0000	1.22
--- decimal.py	19 Aug 2004 22:39:55 -0000	1.23
***************
*** 8,11 ****
--- 8,20 ----
  #    and Tim Peters
  
+ # This module is currently Py2.3 compatible and should be kept that way
+ # unless a major compelling advantage arises.  IOW, 2.3 compatibility is
+ # strongly preferred, but not guaranteed.
+ 
+ # Also, this module should be kept in sync with the latest updates of
+ # the IBM specification as it evolves.  Those updates will be treated
+ # as bug fixes (deviation from the spec is a compatibility, usability
+ # bug) and will be backported.  At this point the spec is stabilizing
+ # and the updates are becoming fewer, smaller, and less significant.
  
  """



More information about the Python-checkins mailing list