[Python-checkins] python/dist/src/Misc NEWS,1.590,1.591

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Thu, 02 Jan 2003 11:35:56 -0800


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

Modified Files:
	NEWS 
Log Message:
astimezone() internals:  if utcoffset() returns a duration, complain if
dst() returns None (instead of treating that as 0).


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.590
retrieving revision 1.591
diff -C2 -d -r1.590 -r1.591
*** NEWS	2 Jan 2003 19:10:19 -0000	1.590
--- NEWS	2 Jan 2003 19:35:54 -0000	1.591
***************
*** 23,26 ****
--- 23,30 ----
    microsecond <http://www.python.org/sf/661086>.
  
+   In dt.asdatetime(tz), if tz.utcoffset(dt) returns a duration,
+   ValueError is raised of tz.dst(dt) returns None (2.3a1 treated it
+   as 0 instead).
+   
  Library
  -------